Skip to content

Commit 8b6151b

Browse files
committed
Fix unupdated call to tar in Dist
1 parent 13361a8 commit 8b6151b

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

lib/App/Cpan6/Commands/Dist.pm6

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,7 @@ multi sub MAIN(
5454
say "tar czf $output {@tar-flags} .";
5555
}
5656

57-
run «
58-
tar czf $output
59-
--transform $transform
60-
--exclude-vcs
61-
--exclude-vcs-ignores
62-
--exclude=.[^/]*
63-
.
64-
», :err;
57+
run « tar czf $output {@tar-flags} .», :err;
6558

6659
say "Created {$output}";
6760

0 commit comments

Comments
 (0)