From 83f941b77e0091183d1986845cf0847bda2bb31f Mon Sep 17 00:00:00 2001 From: Timmy Date: Wed, 15 Jul 2026 16:28:32 +0100 Subject: [PATCH] Revert /app/target binary fallback in entrypoint Superseded: the running fleet was created by `new project` (no /app mount), and the one-way upgrade path now replaces the binary at its canonical install location (/opt/huskies/bin/huskies) directly, so the entrypoint needs no fallback logic. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_019fHdm92yjvguPi2LiXfLB9 --- docker/entrypoint.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index 90e3e593..c16d87a1 100755 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -75,12 +75,4 @@ if [ -d /workspace/frontend ] && [ -f /workspace/frontend/package.json ]; then cd /workspace fi -# If a rebuilt binary exists (from rebuild_and_restart or upgrade), prefer it -# over the image-baked /usr/local/bin/huskies. -REBUILT="/app/target/release/huskies" -if [ -x "$REBUILT" ] && [ "$1" = "huskies" ]; then - shift - exec "$REBUILT" "$@" -fi - exec "$@"