aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2016-12-21 13:17:08 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2016-12-21 13:17:08 +0000
commitd58ab5e7e511f55b08f34683bd6978fb35f5b76a (patch)
treea966eb594c397f5af06004cc8ddd7e51c3ff7a8c
parent50e398fb670130bca88da5dce1a161881b4de8e3 (diff)
downloadalpine-conf-d58ab5e7e511f55b08f34683bd6978fb35f5b76a.tar.bz2
alpine-conf-d58ab5e7e511f55b08f34683bd6978fb35f5b76a.tar.xz
update-conf: fix quoting in subshell
-rw-r--r--update-conf.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/update-conf.in b/update-conf.in
index fd03afa..b59151d 100644
--- a/update-conf.in
+++ b/update-conf.in
@@ -26,7 +26,7 @@ usage() {
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)"
}