Fix script argument check
This commit is contained in:
parent
e087449c0b
commit
2e35481fc2
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [[ $@ -lt 1 ]]; then
|
||||
if [[ $# -lt 1 ]]; then
|
||||
echo "Usage: $0 <path to check>"
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Add table
Reference in a new issue