Browse Source

format code style

pull/2574/head
rewqazxv 5 years ago
parent
commit
6a5ee72722
  1. 7
      acme.sh

7
acme.sh

@ -6363,11 +6363,12 @@ _checkSudo() {
return 0 return 0
fi fi
case "$SUDO_COMMAND" in case "$SUDO_COMMAND" in
*/su )
*/su)
#it's a normal user doing `sudo su`, no problem #it's a normal user doing `sudo su`, no problem
return 0 ;;
return 0
;;
esac esac
for i in `cat /etc/shells`; do
for i in $(cat /etc/shells); do
if [ "$SUDO_COMMAND" = "$i" ]; then if [ "$SUDO_COMMAND" = "$i" ]; then
#it's a normal user running `sudo -i` or `sudo -s`, fine #it's a normal user running `sudo -i` or `sudo -s`, fine
return 0 return 0

Loading…
Cancel
Save