aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-04-15 08:11:57 +0000
committermerakor <cem@ckyln.com>2020-04-15 08:11:57 +0000
commitdb35d1ddd7afe2ce40ebdedca80ecbe3c5b358ca (patch)
treecba606d484313d1feb50b79e570db31d4a517ba0
parentd8fd929d463edc0f8d68eb76d1ce4c152b39f445 (diff)
downloadcpt-db35d1ddd7afe2ce40ebdedca80ecbe3c5b358ca.tar.gz
kiss: fix KISS_PATH without arguments
FossilOrigin-Name: c6e205bd14077ba249ec8cb819a7e90dee3b5f56cce1c226d4c85b2e0416c625
-rwxr-xr-xkiss2
1 files changed, 1 insertions, 1 deletions
diff --git a/kiss b/kiss
index 727829c..25ccfe7 100755
--- a/kiss
+++ b/kiss
@@ -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