Merge branch 'improve-shellscript'

This commit is contained in:
Daniel Eklöf 2022-02-04 21:30:04 +01:00
commit ef54b7f2e5
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -2,6 +2,11 @@
set -e
if [ ${#} -ne 3 ]; then
echo "Usage: ${0} <default_version> <src_dir> <out_file>"
exit 1
fi
default_version=${1}
src_dir=${2}
out_file=${3}