Appease shellcheck and revert to original quote handling

This commit is contained in:
2021-07-06 11:18:50 +02:00
parent 3c30d3621b
commit 8519cb8661

6
abra
View File

@ -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