summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scripts/functions4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/functions b/scripts/functions
index 883df0d..42fafa8 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -94,14 +94,14 @@ set_initlist()
fi
# skip directories
- if [ -d ${si_x} ]; then
+ if [ -d ${si_x} ; then
[ "${verbose}" = "y" ] \
&& echo "$si_x ignored: a directory"
continue
fi
# skip bad syntax
- if [ ! sh -n ${si_x} ]; then
+ if ! sh -n ${si_x} ; then
[ "${verbose}" = "y" ] \
&& echo "$si_x ignored: bad syntax"
continue