diff options
author | merakor <cem@ckyln.com> | 2020-05-07 17:40:34 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-05-07 17:40:34 +0000 |
commit | 430e52072da6e151b0335d1cedf2723f9bafa450 (patch) | |
tree | 578f29f7469e7beea70206728ec61c001e014974 /kiss | |
parent | 7187dbe22405430c224e3848686cba170e182d93 (diff) | |
download | cpt-430e52072da6e151b0335d1cedf2723f9bafa450.tar.gz |
kiss: fix shellcheck error
FossilOrigin-Name: 7bebb8b605e49b894c2e3d00ac2b367188576406b052ce917ec76fd87acf6a1b
Diffstat (limited to 'kiss')
-rwxr-xr-x | kiss | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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' |