From: Ian Lynagh Date: Wed, 27 Apr 2011 15:21:45 +0000 (+0100) Subject: Ignore failure for "./sync-all checkout" X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=64f0f4dd1dab7eb44be0ebf929b0fcc44aee6ce0 Ignore failure for "./sync-all checkout" Not all repos are necessarily branched. --- 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"; }