Index: gclient |
diff --git a/gclient b/gclient |
index 7efc29eba83519dede62d400485133d49f3a49ff..654d2faa50d3f949b370044388ad59dbb78e207f 100755 |
--- a/gclient |
+++ b/gclient |
@@ -42,9 +42,10 @@ function test_git_svn { |
# Update git checkouts prior the cygwin check, we don't want to use msysgit. |
if [ "X$DEPOT_TOOLS_UPDATE" != "X0" -a -e "$base_dir/.git" ] |
then |
- # Skip this call since it fails outside a git checkout. |
- #test_git_svn |
- (cd "$base_dir"; git svn rebase -q -q) |
+ cd $base_dir |
+ test_git_svn |
+ git svn rebase -q -q |
+ cd - > /dev/null |
fi |
if [ "X$DEPOT_TOOLS_UPDATE" != "X0" -a -e "$base_dir/git-cl-repo/.git" ] |