commit 4dcfdfc0222ea05c57367db77916e1f25e53ee33
parent 62331a6b751fcbffea28d21b51ea9967c1b8e1d1
Author: Cem Keylan <cem@ckyln.com>
Date: Wed, 15 Apr 2020 11:11:58 +0300
kiss: fix KISS_PATH without arguments
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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