diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2007-02-19 12:16:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2007-02-19 12:16:42 +0000 |
commit | e4104835556c64f7187164cc3b6241aa4a63375c (patch) | |
tree | 9cbb886e81a6159e8755242d222978510886fcc7 /update-conf | |
parent | 3e8dc3717f14c72885c1b88a9c2fb0e2dd7dde51 (diff) | |
download | alpine-conf-e4104835556c64f7187164cc3b6241aa4a63375c.zip |
release 0.8_beta2. fixed bug update-conf and lbu commit whern there already exist a /etc/lbu/include file
Diffstat (limited to 'update-conf')
-rw-r--r-- | update-conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update-conf b/update-conf index 1e88e72..6a8ab16 100644 --- a/update-conf +++ b/update-conf @@ -41,7 +41,7 @@ while getopts "alih" opt ; do done shift `expr $OPTIND - 1` -find "$ROOT/etc" -name '*.apk-new' | while read apknew ; do +for apknew in $(find "$ROOT/etc" -name '*.apk-new') ; do p="${apknew%.apk-new}" f="${p#${ROOT}/}" unset choice |