goldilocks.js/installer/sudo-cmd.sh
2017-11-06 18:01:40 -07:00

6 строки
167 B
Bash

# Not every platform has or needs sudo, gotta save them O(1)s...
sudo_cmd=""
if [ type -p sudo ]; then
((EUID)) && [[ -z "${ANDROID_ROOT-}" ]] && sudo_cmd="sudo"
fi