summaryrefslogtreecommitdiffstats
path: root/source/a/dcron/run-parts
diff options
context:
space:
mode:
Diffstat (limited to 'source/a/dcron/run-parts')
-rw-r--r--source/a/dcron/run-parts2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/a/dcron/run-parts b/source/a/dcron/run-parts
index dd6b59b3e..247d8c6e1 100644
--- a/source/a/dcron/run-parts
+++ b/source/a/dcron/run-parts
@@ -29,7 +29,7 @@ for SCRIPT in $1/* ; do
# Determine if this file should be skipped by suffix:
SKIP=false
for SUFFIX in $IGNORE_SUFFIXES ; do
- if [ ! "`basename $SCRIPT $SUFFIX`" = "`basename $SCRIPT`" ]; then
+ if [ ! "$(basename $SCRIPT $SUFFIX)" = "$(basename $SCRIPT)" ]; then
SKIP=true
break
fi