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 /lbu | |
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 'lbu')
-rw-r--r-- | lbu | 6 |
1 files changed, 3 insertions, 3 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 |