From fb3ac1f7e9bfd6d335c4ccebc88d3c256534896c Mon Sep 17 00:00:00 2001 From: Jonathan Dahan Date: Fri, 4 Sep 2020 13:31:30 -0400 Subject: [PATCH] Remove reference to crux in comments for those unfamiliar with it. --- contrib/kiss-depends | 3 +-- contrib/kiss-export | 3 +-- contrib/kiss-maintainer | 3 +-- contrib/kiss-revdepends | 3 +-- contrib/kiss-size | 3 +-- 5 files changed, 5 insertions(+), 10 deletions(-) diff --git a/contrib/kiss-depends b/contrib/kiss-depends index 0dd0136..179fc42 100755 --- a/contrib/kiss-depends +++ b/contrib/kiss-depends @@ -1,8 +1,7 @@ #!/bin/sh -ef # Display a package's dependencies -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { set -- "${PWD##*/}" } diff --git a/contrib/kiss-export b/contrib/kiss-export index 0162780..2e8f24b 100755 --- a/contrib/kiss-export +++ b/contrib/kiss-export @@ -1,8 +1,7 @@ #!/bin/sh -ef # Turn an installed package into a KISS tarball -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { set -- "${PWD##*/}" } diff --git a/contrib/kiss-maintainer b/contrib/kiss-maintainer index 4635f05..9b0080a 100755 --- a/contrib/kiss-maintainer +++ b/contrib/kiss-maintainer @@ -1,8 +1,7 @@ #!/bin/sh -ef # Find the maintainer of a package -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { export KISS_PATH=${PWD%/*}:$KISS_PATH set -- "${PWD##*/}" diff --git a/contrib/kiss-revdepends b/contrib/kiss-revdepends index 33bb9e5..2e533ce 100755 --- a/contrib/kiss-revdepends +++ b/contrib/kiss-revdepends @@ -1,8 +1,7 @@ #!/bin/sh -e # Display packages which depend on package -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { set -- "${PWD##*/}" } diff --git a/contrib/kiss-size b/contrib/kiss-size index 7f4b34b..50949c1 100755 --- a/contrib/kiss-size +++ b/contrib/kiss-size @@ -15,8 +15,7 @@ get_size() { printf '%s\t%s\n' "$hum" "$2" } -# CRUX style usage using the current directory as the name of the package to be -# operated on. +# Use the current directory as the package name if no package is given. [ "$1" ] || { set -- "${PWD##*/}" }