X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=blobdiff_plain;f=sync-all;h=cfc44eae84ac39b52ec8d20a6453db6fe4780ecd;hp=930cfd2c5e086b5599d6952a5424e470d04e0fd1;hb=50d0293555691012f96259de7f8682b94db58517;hpb=ed9482bcecb932a016a0f1da6fcfe78f8c74b7eb diff --git a/sync-all b/sync-all index 930cfd2..cfc44ea 100644 --- a/sync-all +++ b/sync-all @@ -3,22 +3,12 @@ use strict; use Cwd; -# Figure out where to get the other repositories from, -# based on where this GHC repo came from. -my $branch = `git branch | grep "\* " | sed "s/^\* //"`; chomp $branch; -my $remote = `git config branch.$branch.remote`; chomp $remote; -my $defaultrepo = `git config remote.$remote.url`; chomp $defaultrepo; - -my $defaultrepo_base; -my $checked_out_tree; - +my $defaultrepo; my @packages; - my $verbose = 2; my $ignore_failure = 0; my $want_remote_repo = 0; my $checked_out_flag = 0; - my $get_mode; # Flags specific to a particular command @@ -29,8 +19,18 @@ my %tags; # Figure out where to get the other repositories from. sub getrepo { my $basedir = "."; - my $repo = $defaultrepo || `cat $basedir/_darcs/prefs/defaultrepo`; - chomp $repo; + my $repo; + + if (defined($defaultrepo)) { + $repo = $defaultrepo; + chomp $repo; + } else { + # Figure out where to get the other repositories from, + # based on where this GHC repo came from. + my $branch = `git branch | grep "\* " | sed "s/^\* //"`; chomp $branch; + my $remote = `git config branch.$branch.remote`; chomp $remote; + $repo = `git config remote.$remote.url`; chomp $repo; + } my $repo_base; my $checked_out_tree;