diff options
author | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-10-07 12:58:36 +0000 |
---|---|---|
committer | dylan.araps@gmail.com <dylan.araps@gmail.com> | 2019-10-07 12:58:36 +0000 |
commit | 74e7dc2b6f8eb2d650711233f41f799b9a62ac6b (patch) | |
tree | 3e05963441a1097cc662c9b5e43df0428372b60f | |
parent | 5d31b4db98509f683d52a311f3ee2d5ecbb6264e (diff) | |
download | cpt-74e7dc2b6f8eb2d650711233f41f799b9a62ac6b.tar.gz |
kiss: Fix KISS_RM when blank but set
FossilOrigin-Name: dbbfb457aeaeec001d196ccd723165c0cb2343eca513410a771e4e15df04ddcb
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -324,7 +324,7 @@ pkg_junk() ( # list. This works exactly like '$KISS_PATH'. # # shellcheck disable=2046,2086 - { IFS=:; set -- ${KISS_RM:-$rm_default}; IFS=$old_ifs; } + { IFS=:; set -- ${KISS_RM-$rm_default}; IFS=$old_ifs; } # Loop over each junk entry and delete it if it exists. for junk; do |