create-amis: fix argument check

Because this script enables `set -u` when no arguments are provided bash
exits with the error:

    $1: unbound variable

instead of the helpful usage message.
gstqt5
David Wagner 2020-05-28 17:38:40 +02:00
parent 79743fef7b
commit 3b1ed035c3
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ log() {
echo "$@" >&2
}
if [ -z "$1" ]; then
if [ "$#" -ne 1 ]; then
log "Usage: ./upload-amazon-image.sh IMAGE_OUTPUT"
exit 1
fi