ensure setup_linux.sh isn't run as root

This commit is contained in:
John Smith 2023-09-11 10:12:26 -04:00
parent cd9dd00c92
commit 797e34f965

View File

@ -1,6 +1,11 @@
#!/bin/bash
set -eo pipefail
if [ $(id -u) -eq 0 ]; then
echo "Don't run this as root"
exit
fi
SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
if [[ "$(uname)" != "Linux" ]]; then