commit c641673c17228c7b1e34b27f4392c2647e2d2381
parent 4d491fea7ef3061e9a042b168858132ec6180eea
Author: Cem Keylan <cem@ckyln.com>
Date: Thu, 7 May 2020 20:40:34 +0300
kiss: fix shellcheck error
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/kiss b/kiss
@@ -1375,6 +1375,10 @@ args() {
# Actions can be abbreviated to their first letter. This saves
# keystrokes once you memorize the commands.
+ #
+ # This is to fix a shellcheck warning when using $PATH
+ # in kiss extensions help string.
+ # shellcheck disable=2016
case $action in
a|alternatives)
if [ "$1" = - ]; then
@@ -1479,7 +1483,7 @@ args() {
log 'alternatives List and swap to alternatives'
log 'build Build a package'
log 'checksum Generate checksums'
- log 'extension List available kiss extensions (kiss-* in \$PATH)'
+ log 'extension List available kiss extensions (kiss-* in $PATH)'
log 'fetch Fetch repositories'
log 'install Install a package'
log 'list List installed packages'