From abd2f9a5a4d2ca03020477a04fbda11825c0d6ef Mon Sep 17 00:00:00 2001 From: Salt Date: Sun, 15 Sep 2019 02:28:01 -0500 Subject: [PATCH] Remove dot update --- build-home.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/build-home.sh b/build-home.sh index 4e61d38..e5da319 100755 --- a/build-home.sh +++ b/build-home.sh @@ -94,15 +94,6 @@ step_repo_move() { return 1 fi } -step_dot_update() { - # Finish syncing - log "Updating submodules and performing basic configuration" - { - git --git-dir="$gitdir" --work-tree="$bootstrapdir" submodule update --init --recursive --remote --depth 50 - git --git-dir="$gitdir" --work-tree="$bootstrapdir" submodule foreach 'git checkout master && git pull' - git --git-dir="$gitdir" --work-tree="$bootstrapdir" config status.showUntrackedFiles no >> "$logfile" - } >> "$logfile" 2>&1 -} ## Main main() { @@ -165,7 +156,6 @@ main() { step_make_skeleton step_repo_clone || exit $? step_repo_move || exit $? - step_dot_update || exit $? log "Dotfiles set up successfully" exit 0 }