typo in printf

This commit is contained in:
Suzanne Soy 2023-11-20 23:43:17 +00:00
parent 5b20e55431
commit c35dc8f760

View File

@ -23,8 +23,8 @@ set -euET -o pipefail
usage() {
printf "Usage:\n"
printf " %s --pin=true" "$0"
printf " %s --pin=false" "$0"
printf " %s --pin=true\n" "$0"
printf " %s --pin=false\n" "$0"
}
if test $# -lt 1; then usage; exit 1; fi
if test "x$1" = "x-h" || test "x$1" = "x--help"; then usage; exit 0; fi