diff options
Diffstat (limited to 'tools/cpt-remove')
-rwxr-xr-x | tools/cpt-remove | 4 |
1 files changed, 2 insertions, 2 deletions
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 $? |