From 8519cb8661427f5e5e58ea9d36d096352246a7e9 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Tue, 6 Jul 2021 11:18:50 +0200 Subject: [PATCH] Appease shellcheck and revert to original quote handling --- abra | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/abra b/abra index 87a7b3e..2b34467 100755 --- a/abra +++ b/abra @@ -1861,10 +1861,12 @@ sub_app_run(){ fi debug "Using container ID ${CONTAINER}" - debug "Running command: docker exec $RUN_USER "$ARGS" "$CONTAINER" "$@"" + # shellcheck disable=SC2145 + debug "Running command: docker exec $RUN_USER $ARGS $CONTAINER $@" + exit # shellcheck disable=SC2086 - if ! docker exec $RUN_USER "$ARGS" "$CONTAINER" "$@"; then + if ! docker exec $RUN_USER $ARGS "$CONTAINER" "$@"; then exit 1 fi