Skip to content

Commit 99bb04d

Browse files
author
Geoffrey Broadwell
committed
Fix tag parsing in bench extract
1 parent c9a752f commit 99bb04d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

bench

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,7 @@ multi MAIN ('extract', *@components) {
121121

122122
# Find all tags known in this component
123123
%*ENV<GIT_DIR> = $bare;
124-
my $tag-list = open 'git tag', :p;
125-
my @all-tags = $tag-list.lines;
126-
$tag-list.close;
124+
my @all-tags = qx{git tag}.lines;
127125

128126
my @revs;
129127
if $comp<checkouts> {

0 commit comments

Comments
 (0)