Compare commits
2 commits
f514dd4f47
...
364d40c71f
Author | SHA1 | Date | |
---|---|---|---|
364d40c71f | |||
25933cbc85 |
6 changed files with 9 additions and 8 deletions
|
@ -21,7 +21,7 @@ if [ "$(id -u)" = "0" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if ! "${libexec}"/utils/isportzap-member > /dev/null 2>&1; then
|
||||
if ! "${libexec}"/utils/isportzap-member; then
|
||||
printerr "$(id -un) is not a member of _portzap"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -22,7 +22,7 @@ if [ "$(id -u)" = "0" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if ! "${libexec}"/utils/isportzap-member > /dev/null 2>&1; then
|
||||
if ! "${libexec}"/utils/isportzap-member; then
|
||||
printerr "$(id -un) is not a member of _portzap"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -20,7 +20,7 @@ if [ "$(id -u)" = "0" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if ! "${libexec}"/utils/isportzap-member > /dev/null 2>&1; then
|
||||
if ! "${libexec}"/utils/isportzap-member; then
|
||||
printerr "$(id -un) is not a member of _portzap"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -20,13 +20,14 @@ if [ "$(id -u)" = "0" ]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -e "${gitdir}" ]; then
|
||||
printerr "try 'portzap clone' instead"
|
||||
if ! "${libexec}"/utils/isportzap-member; then
|
||||
printerr "$(id -un) is not a member of _portzap"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if ! "${libexec}"/utils/isportzap-member; then
|
||||
printerr "$(id -un) is not a member of _portzap"
|
||||
if [ ! -e "${gitdir}" ]; then
|
||||
printerr "try 'portzap clone' instead"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
cd "${gitdir}"
|
||||
|
|
|
@ -5,5 +5,5 @@ set -e
|
|||
# main
|
||||
group="_portzap"
|
||||
mygroups=$(id -Gn | tr ' ' '\n')
|
||||
echo "${mygroups}" | grep -e "^${group}$"
|
||||
echo "${mygroups}" | grep -e "^${group}$" > /dev/null 2>&1
|
||||
exit "${?}"
|
||||
|
|
Loading…
Reference in a new issue