Fix script argument check

This commit is contained in:
jgromes 2025-02-11 15:21:30 +01:00
parent e087449c0b
commit 2e35481fc2

View file

@ -1,6 +1,6 @@
#!/bin/bash
if [[ $@ -lt 1 ]]; then
if [[ $# -lt 1 ]]; then
echo "Usage: $0 <path to check>"
exit 1
fi