polish: make sig smaller

This commit is contained in:
Kuoi 2023-06-15 03:16:53 +08:00
parent 0c9a815c35
commit 04b6080830

View file

@ -88,7 +88,7 @@ sub gpg_sign {
my ($file_path) = @_;
$file_path =~ s/[^\x20-\x7E]//g;
chomp($file_path);
system('gpg', '--output', $file_path . '.sig', '--sign', $file_path);
system('gpg', '--output', $file_path . '.sig', '--detach-sig', $file_path);
}
sub sum_sign {