Skip to content

Commit e9fd934

Browse files
committed
Fix build-corpus.pl to work on fresh checkouts
1 parent 8d167d4 commit e9fd934

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-corpus.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ sub create_tree {
123123

124124
my $json = JSON->new->utf8->canonical;
125125

126-
my $iter = get_blob_iterator('p5-corpus', 'corpus');
126+
my $iter = get_blob_iterator('origin/p5-corpus', 'corpus');
127127
my $tree = {};
128128

129129
while(my ( $filename, $contents ) = $iter->()) {
@@ -150,7 +150,7 @@ sub create_tree {
150150

151151
$tree = create_tree($tree);
152152

153-
my $corpus_tree = find_git_object('p5-corpus', 'corpus');
153+
my $corpus_tree = find_git_object('origin/p5-corpus', 'corpus');
154154

155155
$tree = two_way_pipe('git', 'mktree', "040000 tree $tree\tcorpus_html\n040000 tree $corpus_tree\tcorpus\n");
156156
chomp $tree;

0 commit comments

Comments
 (0)