limits: Fix too few args

This commit is contained in:
tschettervictor
2025-03-23 09:02:12 -06:00
committed by GitHub
parent 1fde6bfb2c
commit 838ac60147

View File

@@ -78,7 +78,7 @@ while [ "$#" -gt 0 ]; do
esac
done
if [ "$#" -lt 2 ] || [ "$#" -gt 3 ]; then
if [ "$#" -lt 2 ] || [ "$#" -gt 4 ]; then
usage
fi