Had to update utils/main.sh to catch if it's passed no flags.

This commit is contained in:
Tristan Ancelet 2023-09-05 21:11:06 -05:00
parent cf21f9cef3
commit 53fc0138d6

View File

@ -28,5 +28,9 @@ while [[ $# -ne 0 ]]; do
generate_index generate_index
break break
;; ;;
*)
usage
exit 1
;;
esac esac
done done