Rewrote dotenv

This commit is contained in:
2021-10-14 12:15:46 -07:00
parent 8e332db84c
commit 5c68440efd
8 changed files with 34 additions and 170 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/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