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

10 lines
183 B
Bash
Executable file

#!/bin/bash
if [[ $1 == "Debian" ]]; then
echo "$1 git-setup"
echo "apt-get -y install git"
elif [[ $1 == "Arch" ]]; then
echo "$1 git-setup"
echo "pacman -S git"
fi