diff options
-rwxr-xr-x | build-all-with-docker | 2 | ||||
-rwxr-xr-x | sign-and-upload-all | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build-all-with-docker b/build-all-with-docker index aae8676a8..0567b212e 100755 --- a/build-all-with-docker +++ b/build-all-with-docker @@ -3,7 +3,7 @@ cd "$(dirname "$(readlink -e "$0")")" shutdownasap_progress=$(shutdownasap -g || echo 'none') -if [ "${shutdownasap_progress" != 'none' ]; then +if [ "${shutdownasap_progress}" != 'none' ]; then >&2 printf 'shutdownasap in progress: %s\n' "${shutdownasap_state}" exit 1 fi diff --git a/sign-and-upload-all b/sign-and-upload-all index 625c61dc2..874a3c43f 100755 --- a/sign-and-upload-all +++ b/sign-and-upload-all @@ -3,7 +3,7 @@ cd "$(dirname "$(readlink -e "$0")")" shutdownasap_progress=$(shutdownasap -g || echo 'none') -if [ "${shutdownasap_progress" != 'none' ]; then +if [ "${shutdownasap_progress}" != 'none' ]; then >&2 printf 'shutdownasap in progress: %s\n' "${shutdownasap_state}" exit 1 fi |