fix: correct debug mode setting in entrypoint script

This commit is contained in:
Burnett01 2025-09-01 15:14:50 +00:00
parent 8bb0d8b3ce
commit 055751bf9e

View file

@ -3,7 +3,7 @@
set -euo pipefail set -euo pipefail
if [ "${INPUT_DEBUG:-false}" = "true" ]; then if [ "${INPUT_DEBUG:-false}" = "true" ]; then
set +x set -x
fi fi
if [ -z "$(echo "$INPUT_REMOTE_PATH" | awk '{$1=$1};1')" ]; then if [ -z "$(echo "$INPUT_REMOTE_PATH" | awk '{$1=$1};1')" ]; then