summaryrefslogtreecommitdiff
path: root/update-conf.in
diff options
context:
space:
mode:
Diffstat (limited to 'update-conf.in')
-rw-r--r--update-conf.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/update-conf.in b/update-conf.in
index 61ea654..4ee1a01 100644
--- a/update-conf.in
+++ b/update-conf.in
@@ -26,7 +26,7 @@ __EOF__
is_modified() {
[ -f "$LBUCACHE" ] || lbu status -a | awk '{print $2}' > "$LBUCACHE"
- test -n "`( echo \"$1\" ; cat \"$LBUCACHE\" ) | sort | uniq -d`"
+ test -n "$( ( echo \"$1\" ; cat \"$LBUCACHE\" ) | sort | uniq -d)"
}
@@ -34,7 +34,7 @@ is_initd() {
echo "$1" | grep etc/init.d/ > /dev/null
}
-args=`getopt -o ailh --long all,initd,list,help -n "$PROGRAM" -- "$@"`
+args=$(getopt -o ailh --long all,initd,list,help -n "$PROGRAM" -- "$@")
if [ $? -ne 0 ]; then
usage
exit 2