mirror of
https://git.minetest.land/dn42/registry
synced 2025-10-09 17:03:42 +02:00
change if to single []
This commit is contained in:
parent
bd427d0da3
commit
9ef8c23168
1 changed files with 2 additions and 2 deletions
|
@ -1,12 +1,12 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ $# -eq 0 ]
|
||||
if [ "$#" -eq "0" ]
|
||||
then
|
||||
echo "Usage: $0 YOUR-MNT"
|
||||
exit
|
||||
fi
|
||||
|
||||
if [[ "$1" = "--all" ]]
|
||||
if [ "$1" = "--all" ]
|
||||
then
|
||||
MNT=""
|
||||
else
|
||||
|
|
Loading…
Add table
Reference in a new issue