fix: application set should finally work

This commit is contained in:
Nikolai Rodionov
2023-02-26 06:33:53 +01:00
parent cc7bfcda3f
commit 6a2ebc2ba4
3 changed files with 22 additions and 5 deletions

17
scripts/cleanup.pl Executable file
View 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";
}