From 43007349dbbaba0d48bc32367938f1dbeb4c0200 Mon Sep 17 00:00:00 2001 From: Tomas Hykel Date: Sun, 26 Apr 2026 18:32:57 +0200 Subject: [PATCH] properly pass multi-word arguments to commands --- bin/compose | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compose b/bin/compose index 66790402c8b..f5e4d56799f 100755 --- a/bin/compose +++ b/bin/compose @@ -91,5 +91,5 @@ elif [[ "$1" = "rspec" ]]; then $DOCKER_COMPOSE -f $COMPOSE_FILE exec backend-test bundle exec rspec "${@:2}" else - $DOCKER_COMPOSE -f $COMPOSE_FILE $* + $DOCKER_COMPOSE -f $COMPOSE_FILE "$@" fi