fix: application set should finally work
This commit is contained in:
17
scripts/cleanup.pl
Executable file
17
scripts/cleanup.pl
Executable file
@ -0,0 +1,17 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# Modules used
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
|
||||
|
||||
my $cmd = "git log --format=format:%H --all";
|
||||
my @output = `$cmd`;
|
||||
chomp @output;
|
||||
|
||||
foreach my $line (@output)
|
||||
{
|
||||
print "$line";
|
||||
}
|
||||
|
Reference in New Issue
Block a user