diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-21 13:17:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-21 13:17:08 +0000 |
commit | d58ab5e7e511f55b08f34683bd6978fb35f5b76a (patch) | |
tree | a966eb594c397f5af06004cc8ddd7e51c3ff7a8c /update-conf.in | |
parent | 50e398fb670130bca88da5dce1a161881b4de8e3 (diff) | |
download | alpine-conf-d58ab5e7e511f55b08f34683bd6978fb35f5b76a.zip |
update-conf: fix quoting in subshell
Diffstat (limited to 'update-conf.in')
-rw-r--r-- | update-conf.in | 2 |
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)" } |