aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-05-07 17:40:34 +0000
committermerakor <cem@ckyln.com>2020-05-07 17:40:34 +0000
commit430e52072da6e151b0335d1cedf2723f9bafa450 (patch)
tree578f29f7469e7beea70206728ec61c001e014974
parent7187dbe22405430c224e3848686cba170e182d93 (diff)
downloadcpt-430e52072da6e151b0335d1cedf2723f9bafa450.tar.gz
kiss: fix shellcheck error
FossilOrigin-Name: 7bebb8b605e49b894c2e3d00ac2b367188576406b052ce917ec76fd87acf6a1b
-rwxr-xr-xkiss6
1 files changed, 5 insertions, 1 deletions
diff --git a/kiss b/kiss
index b54556a..1c75e3c 100755
--- 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'