From 4e807624c6e85d743d647a97a11a7163420e63fe Mon Sep 17 00:00:00 2001 From: David Stern Date: Tue, 28 Apr 2026 14:11:32 -0400 Subject: [PATCH] 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. --- script/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/run b/script/run index 566f5b1a..25f1925b 100755 --- a/script/run +++ b/script/run @@ -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