Skip to content

Commit

Permalink
Fix checking count of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
mengelmann committed May 21, 2020
1 parent 35dfbd0 commit b5a5b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/release
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -euo pipefail
IFS=$'\n\t'

if (( $# < 1 )); then
if (( $# != 2 )); then
echo "Usage: $0 <git-ftp version> <alpine linux version>"
exit 1
fi
Expand Down

0 comments on commit b5a5b7c

Please sign in to comment.