From 04b6080830dcf8049b5fee5466f96e7ed2dbcf13 Mon Sep 17 00:00:00 2001 From: Kuoi Date: Thu, 15 Jun 2023 03:16:53 +0800 Subject: [PATCH] polish: make sig smaller --- gen_iso.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen_iso.perl b/gen_iso.perl index 480bac8..33249f9 100644 --- a/gen_iso.perl +++ b/gen_iso.perl @@ -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 {