blob: dac607c28aca30eb4674617ea47d03a17b553274 (
plain)
1
2
3
4
5
6
7
8
9
10
|
rm -f this_file_will_be_deleted
rm -f bin/config-update.sh
if ! [ -d $HOME/.oh-my-zsh ]; then
if which curl >/dev/null ; then
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
elif which wget >/dev/null ; then
sh -c "$(wget https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O -)"
fi
fi
rm -f .zshrc.pre-oh-my-zsh
|