Removed bug from save_dotfiles function

This commit is contained in:
hellerve
2015-05-27 18:48:15 +02:00
parent c9f9c1d44f
commit 4a4f0d5964

5
zshrc
View File

@@ -204,8 +204,8 @@ save_dotfiles(){
local DOTPATH=~/Documents/Code/Github/.dotfiles/
cp ~/.bash_profile ${DOTPATH}bash_profile
cp -r ~/.cabal/config ${DOTPATH}cabal/config
cp -r ~/.scripts ${DOTPATH}.scripts
cp -r ~/.emacs.d ${DOTPATH}.emacs.d
cp -r ~/.scripts ${DOTPATH}
cp -r ~/.emacs.d ${DOTPATH}
cp ~/.ghci ${DOTPATH}ghci
cp ~/.gitignore ${DOTPATH}gitignore
cp ~/.gitconfig ${DOTPATH}gitconfig
@@ -216,7 +216,6 @@ save_dotfiles(){
cp ~/.valgrindrc ${DOTPATH}valgrindrc
cp -r ~/.vim ${DOTPATH}vim
cp ~/.vimrc ${DOTPATH}vimrc
cp ~/.vimrc.local ${DOTPATH}vimrc.local
cp ~/.zshrc ${DOTPATH}zshrc
}