This commit is contained in:
MangoPig
2025-12-05 19:01:00 +00:00
parent afd6481ec6
commit cf670488ac
9 changed files with 211 additions and 89 deletions

View File

@@ -1,4 +1,7 @@
#!/bin/bash
# Path: scripts/provision.sh
set -e
# Colors
@@ -44,7 +47,7 @@ if [ "$OS" == "arch" ] || [ "$OS" == "manjaro" ]; then
SUDO_GROUP="wheel"
elif [ "$OS" == "ubuntu" ] || [ "$OS" == "debian" ]; then
apt-get update
apt-get install -y git make curl sudo
apt-get install -y git make curl sudo zsh
SUDO_GROUP="sudo"
else
echo -e "${RED}Unsupported OS: $OS${NC}"