Files
blomarchy/install/helpers/as-root.sh
T

8 lines
76 B
Bash

as_root() {
if (( EUID == 0 )); then
"$@"
else
sudo "$@"
fi
}