installation of basic development tools

This commit is contained in:
David Young
2026-04-09 13:50:52 -06:00
parent a2f930e5a0
commit fb699e92e5

View File

@@ -28,6 +28,18 @@ print_logo
cd ~
sudo -v
if ! command -v git &> /dev/null; then
echo "Installing git..."
sudo pacman -S --noconfirm git
fi
if ! pacman -Qi base-devel &> /dev/null; then
echo "Installing base-devel..."
sudo pacman -S --noconfirm base-devel
else
echo "base-devel is already installed, skipping."
fi
echo "Getting the latest version of HamPackServer..."
rm -rf ~/.local/share/HamPack
git clone https://gitea.young.computer/david/HamPackServer.git ~/.local/share/HamPack > /dev/null