make usage an error

This commit is contained in:
Joey Hess 2025-03-10 13:47:23 -04:00
parent 9d9e34c187
commit f59c0d1f07
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -6,8 +6,9 @@
set -e
if [ -z "$1" ]; then
echo "Usage: file.wasm [inputs] -- [outputs] -- [options]"
echo "Example: concat.wasm foo bar -- baz --"
echo "Usage: file.wasm [inputs] -- [outputs] -- [options]" >&2
echo "Example: concat.wasm foo bar -- baz --" >&2
exit 1
fi
stage=1