dotenv/dotenv.sh
2021-10-14 12:15:46 -07:00

14 lines
229 B
Bash

#!/bin/bash
# Disable running as root.
if [[ "$EUID" -eq 0 ]]; then
echo "Please do not run as root"
exit 1
fi
# Arch Linux Setup
if [ -f "/etc/arch-release" ]; then
./scripts/install-arch.sh
fi
./scripts/install-node.sh