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 "$@"