forked from kiss-community/kiss
Remove reference to crux in comments for those unfamiliar with it.
This commit is contained in:
parent
0f054313e3
commit
fb3ac1f7e9
@ -1,8 +1,7 @@
|
|||||||
#!/bin/sh -ef
|
#!/bin/sh -ef
|
||||||
# Display a package's dependencies
|
# Display a package's dependencies
|
||||||
|
|
||||||
# CRUX style usage using the current directory as the name of the package to be
|
# Use the current directory as the package name if no package is given.
|
||||||
# operated on.
|
|
||||||
[ "$1" ] || {
|
[ "$1" ] || {
|
||||||
set -- "${PWD##*/}"
|
set -- "${PWD##*/}"
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#!/bin/sh -ef
|
#!/bin/sh -ef
|
||||||
# Turn an installed package into a KISS tarball
|
# Turn an installed package into a KISS tarball
|
||||||
|
|
||||||
# CRUX style usage using the current directory as the name of the package to be
|
# Use the current directory as the package name if no package is given.
|
||||||
# operated on.
|
|
||||||
[ "$1" ] || {
|
[ "$1" ] || {
|
||||||
set -- "${PWD##*/}"
|
set -- "${PWD##*/}"
|
||||||
}
|
}
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#!/bin/sh -ef
|
#!/bin/sh -ef
|
||||||
# Find the maintainer of a package
|
# Find the maintainer of a package
|
||||||
|
|
||||||
# CRUX style usage using the current directory as the name of the package to be
|
# Use the current directory as the package name if no package is given.
|
||||||
# operated on.
|
|
||||||
[ "$1" ] || {
|
[ "$1" ] || {
|
||||||
export KISS_PATH=${PWD%/*}:$KISS_PATH
|
export KISS_PATH=${PWD%/*}:$KISS_PATH
|
||||||
set -- "${PWD##*/}"
|
set -- "${PWD##*/}"
|
||||||
|
@ -1,8 +1,7 @@
|
|||||||
#!/bin/sh -e
|
#!/bin/sh -e
|
||||||
# Display packages which depend on package
|
# Display packages which depend on package
|
||||||
|
|
||||||
# CRUX style usage using the current directory as the name of the package to be
|
# Use the current directory as the package name if no package is given.
|
||||||
# operated on.
|
|
||||||
[ "$1" ] || {
|
[ "$1" ] || {
|
||||||
set -- "${PWD##*/}"
|
set -- "${PWD##*/}"
|
||||||
}
|
}
|
||||||
|
@ -15,8 +15,7 @@ get_size() {
|
|||||||
printf '%s\t%s\n' "$hum" "$2"
|
printf '%s\t%s\n' "$hum" "$2"
|
||||||
}
|
}
|
||||||
|
|
||||||
# CRUX style usage using the current directory as the name of the package to be
|
# Use the current directory as the package name if no package is given.
|
||||||
# operated on.
|
|
||||||
[ "$1" ] || {
|
[ "$1" ] || {
|
||||||
set -- "${PWD##*/}"
|
set -- "${PWD##*/}"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user