From 3972af771619db56ada4e844f3a5117e5a2943ce Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Wed, 14 May 2025 09:00:08 -0600 Subject: [PATCH] convert: Fix help when no rags --- usr/local/share/bastille/convert.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/usr/local/share/bastille/convert.sh b/usr/local/share/bastille/convert.sh index 5a1bf641..f1ccd819 100644 --- a/usr/local/share/bastille/convert.sh +++ b/usr/local/share/bastille/convert.sh @@ -76,6 +76,10 @@ while [ "$#" -gt 0 ]; do esac done +if [ "$#" -lt 1 ] || [ "$#" -gt 2 ]; then + usage +fi + TARGET="${1}" CONVERT_RELEASE="${2}"