From 0aaf846fcc5a5d8a32de3ec6349e8d644db3b704 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Wed, 18 Feb 2009 20:28:08 +0100 Subject: [PATCH] Remove an unnecessary check in sync.sh. This was a leftover from setup.sh but as sync.sh uses find to get the git repositories they always exist. --- sync.sh | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/sync.sh b/sync.sh index 55791c1..6477d0d 100755 --- a/sync.sh +++ b/sync.sh @@ -20,16 +20,14 @@ fi # Fetch from/Push to each remote of each git subdirectory. for project in `find . -name .git -type d`; do - if [ -d "$project" ]; then - pwd=`pwd` - cd "$project" + pwd=`pwd` + cd "$project" - # Fetch from/Push to all remotes. - for remote in `git remote`; do - echo "$project: ${method}ing $remote ..." - git $method "$remote" - done + # Fetch from/Push to all remotes. + for remote in `git remote`; do + echo "$project: ${method}ing $remote ..." + git $method "$remote" + done - cd "$pwd" - fi + cd "$pwd" done -- 2.44.1