diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-11 08:45:37 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-09-11 08:45:37 +0000 |
commit | a18715da58349b425409db570a9d7dd2ee2b7faa (patch) | |
tree | f822e600b61cce1d948e7c11e4236d6ec7be8539 | |
parent | b6c818fa23e0371838753b69908a90ec826a79f9 (diff) | |
download | cpt-a18715da58349b425409db570a9d7dd2ee2b7faa.tar.gz |
kiss: clean up
FossilOrigin-Name: 0f7d30ddd04ba872e994f29218337e795e7bc578ca9478d74197839e8057db56
-rwxr-xr-x | kiss | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -472,7 +472,7 @@ pkg_build() { # Install only dependencies of passed packages. # Skip this check if this is a package update. case $explicit_packages in - *" $pkg "*) [ "$pkg_update" ] || continue ;; + *" $pkg "*) [ "$pkg_update" ] || continue esac log "[$pkg] Needed as a dependency or has an update, installing" @@ -694,7 +694,7 @@ pkg_install() { while read -r file; do # Skip deleting some leftover files. case $file in - /etc/*|*bin/rm|*bin/busybox|*bin/rsync) continue ;; + /etc/*|*bin/rm|*bin/busybox|*bin/rsync) continue esac file=$KISS_ROOT/$file |