summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/depscan.sh')
-rwxr-xr-xsbin/depscan.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/depscan.sh b/sbin/depscan.sh
index 1fbf0ef..59bda9d 100755
--- a/sbin/depscan.sh
+++ b/sbin/depscan.sh
@@ -9,7 +9,7 @@ if [[ $1 == "--debug" ]] ; then
set -x
fi
-if [[ ! -d ${svcdir} ]]; then
+if [[ ! -d ${svcdir} ]] ; then
if ! mkdir -p -m 0755 "${svcdir}" 2>/dev/null ; then
eerror "Could not create needed directory '${svcdir}'!"
fi
@@ -18,7 +18,7 @@ fi
for x in softscripts snapshot options daemons \
started starting inactive stopping failed \
exclusive exitcodes ; do
- if [[ ! -d "${svcdir}/${x}" ]] ; then
+ if [[ ! -d ${svcdir}/${x} ]] ; then
if ! mkdir -p -m 0755 "${svcdir}/${x}" 2>/dev/null ; then
eerror "Could not create needed directory '${svcdir}/${x}'!"
fi