From e0a776f4f8a6f0e1f26a5bb832089d616ae5b41a Mon Sep 17 00:00:00 2001 From: Long Vu Date: Wed, 28 Feb 2024 15:14:06 -0500 Subject: [PATCH] compose script: update log to match COMPOSE_EXTRA_OPTS ordering (mishaschwartz feedback) --- birdhouse/pavics-compose.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/birdhouse/pavics-compose.sh b/birdhouse/pavics-compose.sh index 0cf32e2b3..0efdf722e 100755 --- a/birdhouse/pavics-compose.sh +++ b/birdhouse/pavics-compose.sh @@ -118,7 +118,7 @@ if [ x"$1" = x"up" ]; then done fi -log INFO "Executing docker-compose with extra options: ${COMPOSE_EXTRA_OPTS} $*" +log INFO "Executing docker-compose with extra options: $* ${COMPOSE_EXTRA_OPTS}" # the PROXY_SECURE_PORT is a little trick to make the compose file invalid without the usage of this wrapper script PROXY_SECURE_PORT=443 HOSTNAME=${PAVICS_FQDN} docker-compose ${COMPOSE_CONF_LIST} $* ${COMPOSE_EXTRA_OPTS} ERR=$?