Don't let ./script/run fail for external contributors. (#9268)

## Description

Fixes https://github.com/warpdotdev/warp/issues/9266.

We don't want `./script/run` to error out b/c of
`./script/install_channel_config` failing.
This commit is contained in:
David Stern
2026-04-28 14:11:32 -04:00
committed by GitHub
parent 6bd99eb8e4
commit 4e807624c6
+1 -1
View File
@@ -20,7 +20,7 @@ OS_TYPE="$(uname -s)"
FEATURES="gui"
./script/install_channel_config
./script/install_channel_config || echo "Skipping internal channel config installation (no repo access)."
# If warp_channel_config is on PATH, build the Local channel binary; otherwise build the OSS channel.
if command -v warp-channel-config &>/dev/null; then