diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-06-15 06:22:16 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-06-15 06:22:16 +0000 |
commit | 392803d402f937a3e2b9873c88140df90c02bb35 (patch) | |
tree | 61722726a0612bed629e8654ed59a0992d3a4ec3 | |
parent | 3fe6f27b34b8a391dd99d2faa67ec30067cd98ec (diff) | |
download | cpt-392803d402f937a3e2b9873c88140df90c02bb35.tar.gz |
depends: Use continue
FossilOrigin-Name: ff46fc7b4522d7b1b0711db633c5af5c71a30e53b2c140d2a2d6fdadf576af8f
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ pkg_setup() { pkg_depends() { while read -r dep opt; do pkg_list "$dep" || { - [ "$1" = install ] && [ "$opt" = make ] && return + [ "$1" = install ] && [ "$opt" = make ] && continue case $missing in *" $dep${opt:+ ($opt)},"*) ;; |