diff options
author | merakor <cem@ckyln.com> | 2020-07-24 11:21:42 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-07-24 11:21:42 +0000 |
commit | 71ff4478d4d2066fd1fbd2618d195eb2368bad90 (patch) | |
tree | c7dff3fcb984e4ac6c47a87cc4228f3e271f22d2 /tools/cpt-install | |
parent | 98f546d542dc5bacfc46590d148a1adcfa908c95 (diff) | |
download | cpt-71ff4478d4d2066fd1fbd2618d195eb2368bad90.tar.gz |
cpt-remove/install: set current package directory after arg parsing.
FossilOrigin-Name: 86e23137a8936c1eb36768382589356ea41b508f9f0cf265b1c97f483e879205
Diffstat (limited to 'tools/cpt-install')
-rwxr-xr-x | tools/cpt-install | 4 |
1 files changed, 2 insertions, 2 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 $? |