From e52d0bb06c738516a5962002d7dad5eacbadae57 Mon Sep 17 00:00:00 2001 From: staticsafe Date: Sat, 18 Jan 2014 04:03:59 +0000 Subject: [PATCH] Add submodule stuff after cloning repo. Remove other unneeded comment. --- envsetup.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/envsetup.sh b/envsetup.sh index 566cf0c..18549ea 100755 --- a/envsetup.sh +++ b/envsetup.sh @@ -29,8 +29,6 @@ changeshell() { } linkfiles() { - #find ~/dev/dotfiles -type f -name ".*" -execdir ln -s -f {} - # --target-directory=$HOME \; # removed until I can figure out the issue ln -sf ~/dotfiles/.zshrc $HOME/ ln -sf ~/dotfiles/.vimrc $HOME/ ln -sf ~/dotfiles/.tmux.conf $HOME/ @@ -47,7 +45,7 @@ getdotfiles() { linkfiles else cd - git clone $repo + git clone $repo && cd ~/dotfiles && git submodule init && git submodule update linkfiles fi }