From 94815085a8ad0ec296d759a8eddfd70ee0381823 Mon Sep 17 00:00:00 2001 From: Valentin Lab Date: Thu, 25 Oct 2018 00:22:19 +0200 Subject: [PATCH] fix: rogue doubling of arguments. --- bin/compose | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compose b/bin/compose index e1b4f53..2f943f5 100755 --- a/bin/compose +++ b/bin/compose @@ -2893,7 +2893,7 @@ export SERVICE_PACK="${services[*]}" case "$action" in up|start|stop|build|run) if [[ "$action" == "up" ]] && ! array_member action_opts -d; then ## force daemon mode for up - action_opts+=("-d" "${action_opts[@]}") + action_opts+=("-d") fi launch_docker_compose "${compose_opts[@]}" "$action" "${action_opts[@]}" "${action_posargs[@]}" "${remainder_args[@]}" ;;