properly pass multi-word arguments to commands

This commit is contained in:
Tomas Hykel
2026-04-26 18:32:57 +02:00
parent 318728a677
commit 43007349db
+1 -1
View File
@@ -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