Browse Source

Fix inverted condition.

master
Roelf Wichertjes 2 years ago
parent
commit
ae7298f060
Signed by: rewby GPG Key ID: 4C2B6D2972EE5423
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      uploader.sh

+ 1
- 1
uploader.sh View File

@@ -16,7 +16,7 @@ do
lock_rc="${?}"
set -e
if [ "$lock_rc" -ne 0 ]; then
if [ "$lock_rc" -ne 234 ]; then
if [ "$lock_rc" -eq 234 ]; then
echo "Could not claim pack!"
else
echo "Error return: ${lock_rc}."


Loading…
Cancel
Save