diff options
author | merakor <cem@ckyln.com> | 2020-04-15 08:11:57 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-04-15 08:11:57 +0000 |
commit | db35d1ddd7afe2ce40ebdedca80ecbe3c5b358ca (patch) | |
tree | cba606d484313d1feb50b79e570db31d4a517ba0 | |
parent | d8fd929d463edc0f8d68eb76d1ce4c152b39f445 (diff) | |
download | cpt-db35d1ddd7afe2ce40ebdedca80ecbe3c5b358ca.tar.gz |
kiss: fix KISS_PATH without arguments
FossilOrigin-Name: c6e205bd14077ba249ec8cb819a7e90dee3b5f56cce1c226d4c85b2e0416c625
-rwxr-xr-x | kiss | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1267,7 +1267,7 @@ args() { # We are exporting the KISS_PATH, so if another # instance of 'kiss' is spawned from the current # one, they continue to use the same KISS_PATH - export KISS_PATH="${PWD%/*}" + export KISS_PATH="${PWD%/*}:$KISS_PATH" set -- "${PWD##*/}" } ; esac |