fix no use of apply_file_diffs tool

This commit is contained in:
Josh Woodcock
2026-05-26 16:31:54 -05:00
committed by Ryan Ward
parent a0568508ea
commit 0f969f4389
5 changed files with 1065 additions and 12 deletions
+8 -8
View File
@@ -22,11 +22,11 @@ cd "${REPO_ROOT}"
: "${FEATURES:?FEATURES must be set (invoke via ./script/run)}"
if [ "$WARP_CHANNEL" = "local" ]; then
WARP_APP_PATH="target/debug/bundle/osx/WarpLocal.app"
WARP_SCHEME_NAME="warplocal"
WARP_APP_PATH="target/debug/bundle/osx/Galaxy Local.app"
WARP_SCHEME_NAME="galaxylocal"
else
WARP_APP_PATH="target/debug/bundle/osx/WarpOss.app"
WARP_SCHEME_NAME="warposs"
WARP_APP_PATH="target/debug/bundle/osx/Galaxy.app"
WARP_SCHEME_NAME="galaxyoss"
fi
DONT_OPEN=false
# Launches the binary with "open", meaning the Warp process is
@@ -60,9 +60,9 @@ while (( "$#" )); do
--release)
echo "Detected release build, pointing at release bundle under target/release/bundle"
if [ "$WARP_CHANNEL" = "local" ]; then
WARP_APP_PATH="target/release/bundle/osx/WarpLocal.app"
WARP_APP_PATH="target/release/bundle/osx/Galaxy Local.app"
else
WARP_APP_PATH="target/release/bundle/osx/WarpOss.app"
WARP_APP_PATH="target/release/bundle/osx/Galaxy.app"
fi
PARAMS="$PARAMS $1"
shift
@@ -71,9 +71,9 @@ while (( "$#" )); do
PROFILE="$2"
shift 2
if [ "$WARP_CHANNEL" = "local" ]; then
WARP_APP_PATH="target/${PROFILE}/bundle/osx/WarpLocal.app"
WARP_APP_PATH="target/${PROFILE}/bundle/osx/Galaxy Local.app"
else
WARP_APP_PATH="target/${PROFILE}/bundle/osx/WarpOss.app"
WARP_APP_PATH="target/${PROFILE}/bundle/osx/Galaxy.app"
fi
PARAMS="$PARAMS --profile $PROFILE"
;;
+2 -2
View File
@@ -24,10 +24,10 @@ FEATURES="gui"
# 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
WARP_BIN_NAME="warp"
WARP_BIN_NAME="galaxy-local"
WARP_CHANNEL="local"
else
WARP_BIN_NAME="warp-oss"
WARP_BIN_NAME="galaxy-oss"
WARP_CHANNEL="oss"
fi