-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-remote.sh
32 lines (27 loc) · 986 Bytes
/
install-remote.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
#############################################################
# peej.io forwards to this file
# curl -L peej.io | bash
#############################################################
# Check for git
#############################################################
hash git >/dev/null 2>&1 || {
echo "Error: git is not installed. Trying to install..."
sudo apt-get install git
}
# Check for zsh
#############################################################
hash zsh >/dev/null 2>&1 || {
echo "Error: zsh is not installed. Trying to install..."
sudo apt-get install zsh
}
# Delete current dotfiles dir if there is one
#############################################################
if [ -d ~/dotfiles ]; then
rm -rf $HOME/dotfiles
fi
# Clone the repo and run the install script
#############################################################
cd $HOME \
&& git clone --quiet --recursive https://github.com/pjfancher/dotfiles &> /dev/null \
&& . $HOME/dotfiles/install.sh