diff options
-rwxr-xr-x | tools/cpt-install | 4 | ||||
-rwxr-xr-x | tools/cpt-remove | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/tools/cpt-install b/tools/cpt-install index 0fe2484..d99bfa6 100755 --- a/tools/cpt-install +++ b/tools/cpt-install @@ -4,8 +4,6 @@ # shellcheck disable=1091 if command -v cpt-lib >/dev/null; then . cpt-lib; else . ../lib.sh; fi -[ "$1" ] || set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH - while [ "$1" ]; do case "$1" in --help|-h) @@ -24,6 +22,8 @@ while [ "$1" ]; do esac done +[ "$1" ] || set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH + [ -w "$CPT_ROOT/" ] || [ "$uid" = 0 ] || { as_root "$0" "$@" exit $? diff --git a/tools/cpt-remove b/tools/cpt-remove index 543f8b8..844ea13 100755 --- a/tools/cpt-remove +++ b/tools/cpt-remove @@ -4,8 +4,6 @@ # shellcheck disable=1091 if command -v cpt-lib >/dev/null; then . cpt-lib; else . ../lib.sh; fi -[ "$1" ] || set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH - while [ "$1" ]; do case "$1" in --help|-h) @@ -24,6 +22,8 @@ while [ "$1" ]; do esac done +[ "$1" ] || set -- "${PWD##*/}"; export CPT_PATH=${PWD%/*}:$CPT_PATH + [ -w "$CPT_ROOT/" ] || [ "$uid" = 0 ] || { as_root "$0" "$@" exit $? |