Appease shellcheck and revert to original quote handling
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-07-06 11:18:50 +02:00
parent 3c30d3621b
commit 8519cb8661
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 4 additions and 2 deletions

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