Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
It appears that the fix for the previous commit is to clone the bare …
…repo with --mirror instead of --bare
  • Loading branch information
Geoffrey Broadwell committed Dec 3, 2012
1 parent c60ac8b commit 9d20b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bench
Expand Up @@ -48,7 +48,7 @@ multi MAIN ('setup') {
my $repo = $component<repo_url>;
my $bare = "$name.git";
say "----> Already cloned." if $bare.path.d && $name.path.d;
run < git clone --bare >, $repo, $bare unless $bare.path.d;
run < git clone --mirror >, $repo, $bare unless $bare.path.d;
run < git clone -l >, $bare, $name unless $name.path.d;
}

Expand Down

0 comments on commit 9d20b5f

Please sign in to comment.