diff options
-rw-r--r-- | lbu | 6 | ||||
-rw-r--r-- | update-conf | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -173,9 +173,9 @@ cmd_commit() { cd "$ROOT" # for upgrading from packages.list times - if [ ! -f "$INCLUDE_LIST" ] ; then - mkdir -p $(dirname "$INCLUDE_LIST") - echo "var/lib/apk/world" > "$INCLUDE_LIST" + mkdir -p $(dirname "$INCLUDE_LIST") + if ! grep "var/lib/apk/world" "$INCLUDE_LIST" >/dev/null 2>&1 ; then + echo "var/lib/apk/world" >> "$INCLUDE_LIST" fi # Automatically add list and modified files 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 |