summaryrefslogtreecommitdiff
path: root/regen.pl
diff options
context:
space:
mode:
Diffstat (limited to 'regen.pl')
-rw-r--r--regen.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/regen.pl b/regen.pl
index f97a618405..f103b0abcf 100644
--- a/regen.pl
+++ b/regen.pl
@@ -26,8 +26,9 @@ warnings.pl
embed.pl
);
+my $tap = $ARGV[0] && $ARGV[0] eq '--tap' ? '# ' : '';
foreach my $pl (@scripts) {
my @command = ($^X, $pl, @ARGV);
- print "@command\n";
+ print "$tap@command\n";
system @command;
}