arch-automated-installer/scripts/system-setup/git-setup.sh

10 lines
183 B
Bash
Raw Normal View History

2024-06-27 05:08:47 +00:00
#!/bin/bash
if [[ $1 == "Debian" ]]; then
echo "$1 git-setup"
2024-06-28 19:13:14 +00:00
echo "apt-get -y install git"
elif [[ $1 == "Arch" ]]; then
echo "$1 git-setup"
echo "pacman -S git"
fi