From 64f0f4dd1dab7eb44be0ebf929b0fcc44aee6ce0 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 27 Apr 2011 16:21:45 +0100 Subject: [PATCH] Ignore failure for "./sync-all checkout" Not all repos are necessarily branched. --- sync-all | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sync-all b/sync-all index c9c4dc4..5dc6a40 100755 --- a/sync-all +++ b/sync-all @@ -378,6 +378,8 @@ sub scmall { scm ($localpath, $scm, @scm_args, @args); } elsif ($command =~ /^checkout$/) { + # Not all repos are necessarily branched, so ignore failure + $ignore_failure = 1; scm ($localpath, $scm, "checkout", @args) unless $scm eq "darcs"; } -- 1.7.10.4