diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-11-14 01:31:51 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-11-14 01:31:51 +0000 |
commit | 7cfc4dfa99a69c505454943581524e1267cd39c3 (patch) | |
tree | f6641a0be103e3425987cc0765bb6487dfdd6b53 | |
parent | 9d19b7d16c52b1f05bc42d544043324324323614 (diff) | |
download | cpt-7cfc4dfa99a69c505454943581524e1267cd39c3.tar.gz |
kiss: fix file parsing bug
FossilOrigin-Name: a84b3a8e61a6a5a82c57f665a9ec98a2700f99403b2953a5fe0a0c2f84cee297
-rwxr-xr-x | kiss | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -142,7 +142,7 @@ pkg_sources() { repo_dir=$(pkg_find "$1") - while read -r src _; do + while read -r src _ || [ -n "$src" ]; do # Remote source (cached). if [ -f "${src##*/}" ]; then log "$1" "Found cached source '${src##*/}'" @@ -171,7 +171,7 @@ pkg_extract() { repo_dir=$(pkg_find "$1") - while read -r src dest; do + while read -r src dest || [ -n "$src" ]; do mkdir -p "$mak_dir/$1/$dest" && cd "$mak_dir/$1/$dest" case $src in @@ -214,7 +214,7 @@ pkg_depends() { (pkg_list "$1" >/dev/null) && return # Recurse through the dependencies of the child packages. - while read -r dep _; do + while read -r dep _ || [ -n "$dep" ]; do [ "${dep##\#*}" ] && pkg_depends "$dep" done 2>/dev/null < "$repo_dir/depends" ||: @@ -548,7 +548,7 @@ pkg_checksums() { repo_dir=$(pkg_find "$1") - while read -r src _; do + while read -r src _ || [ -n "$src" ]; do # File is local to the package. if [ -f "$repo_dir/$src" ]; then src_path=$repo_dir/${src%/*} @@ -690,7 +690,7 @@ pkg_install() { # installing the package. [ -f "$tar_dir/$pkg_name/$pkg_db/$pkg_name/depends" ] && [ -z "$KISS_FORCE" ] && - while read -r dep dep_type; do + while read -r dep dep_type || [ -n "$dep" ]; do [ "${dep##\#*}" ] || continue [ "$dep_type" ] || pkg_list "$dep" >/dev/null || install_dep="$install_dep'$dep', " |