]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
Remove an unnecessary check in sync.sh.
authorSimon Ruderich <simon@ruderich.org>
Wed, 18 Feb 2009 19:28:08 +0000 (20:28 +0100)
committerSimon Ruderich <simon@ruderich.org>
Wed, 18 Feb 2009 19:28:08 +0000 (20:28 +0100)
This was a leftover from setup.sh but as sync.sh uses find to get the git
repositories they always exist.

sync.sh

diff --git a/sync.sh b/sync.sh
index 55791c10e28ad475ae51e733917ee80c85c4e013..6477d0d9a01c39778a7da9042654baf9a25980d2 100755 (executable)
--- 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