diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-02 13:59:11 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-02 13:59:11 +0000 |
commit | 9fc7174dd1d8805a88611b36df4e3cdea674da23 (patch) | |
tree | fc621f37ab6cbcd400e685972e11b2d2877dd2f5 | |
parent | 26f7fb4ef3ccbcb7fedbcffd65751bc882073510 (diff) | |
download | alpine-conf-9fc7174dd1d8805a88611b36df4e3cdea674da23.zip |
setup-acf: fix -a
-rw-r--r-- | setup-acf.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-acf.in b/setup-acf.in index 1ca8bf2..28e33c3 100644 --- a/setup-acf.in +++ b/setup-acf.in @@ -15,7 +15,7 @@ pkgs="acf-core acf-alpine-baselayout acf-apk-tools openssl" while getopts "ae:hl:n" opt ; do case $opt in - a) pkgs=`apk fetch -l | grep ^acf-`;; + a) pkgs=$(apk search --quiet --exact 'acf-*');; e) EMAIL="$OPTARG";; h) usage;; l) address="$OPTARG";; |