fix: change install.sh to be an actual bash script
This commit is contained in:
parent
c5f18a3c4a
commit
4db736912c
23
install.sh
23
install.sh
@ -1,24 +1,9 @@
|
|||||||
function isInstalled {
|
|
||||||
if [ "$(which $1)" != "" ]; then
|
|
||||||
return 0;
|
|
||||||
fi
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
function install {
|
|
||||||
# Check if program is already installed
|
|
||||||
if isInstalled $1; then
|
|
||||||
echo " - $1 is already installed"
|
|
||||||
else
|
|
||||||
echo " - installing $1 ..."
|
|
||||||
apt-get install $1 -y > /dev/null
|
|
||||||
echo " - finished"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
#Prerequesits
|
#Prerequesits
|
||||||
echo "-- Installing prerequisites --"
|
echo "-- Installing git --"
|
||||||
install git
|
install git
|
||||||
|
if [ "$(which $1)" != "" ]; then
|
||||||
|
apt-get install $1 -y > /dev/null
|
||||||
|
fi
|
||||||
|
|
||||||
echo "-- Cloning repo --"
|
echo "-- Cloning repo --"
|
||||||
git clone git@github.com:jim-fx/.dotfiles.git ~/.dotfiles
|
git clone git@github.com:jim-fx/.dotfiles.git ~/.dotfiles
|
||||||
|
Loading…
Reference in New Issue
Block a user