Skip to content

Commit

Permalink
Fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
acrobat committed Apr 11, 2015
1 parent e4f25e2 commit efd4aee
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions install.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

########## Variables

dir=~/.dotfiles # dotfiles directory
olddir=~/.dotfiles_old # old dotfiles backup directory
files="zshrc gitignore gitconfig" # list of files/folders to symlink in homedir
ohmyzsh_repo=http://github.com/robbyrussell/oh-my-zsh.git #Oh my zsh repo url
dir=~/.dotfiles # dotfiles directory
olddir=~/.dotfiles_old # old dotfiles backup directory
files="zshrc gitignore gitconfig" # list of files/folders to symlink in homedir
ohmyzsh_repo=http://github.com/robbyrussell/oh-my-zsh.git # Oh my zsh repo url
zsh=~/.oh-my-zsh

##########
Expand Down Expand Up @@ -61,13 +61,13 @@ fi
install_zsh

#copy ohmyzsh template
if [ ! -L "$zsh/themes/doubleeend.zsh-theme" ]; then
if [ ! -L "$zsh/themes/doubleend.zsh-theme" ]; then
echo "Copy zsh theme"
ln -s $dir/zsh/doubleend.zsh-theme $zsh/themes/doubleeend.zsh-theme
ln -s $dir/zsh/doubleend.zsh-theme $zsh/themes/doubleend.zsh-theme
fi;

#Cleanup after install
if [ -z "$(ls -A $olddir)" ]; then
echo "Clean up"
rm -Rf $olddir
fi;
fi;

0 comments on commit efd4aee

Please sign in to comment.