Skip to content

Commit

Permalink
[backend] bs_notar: support the --signflavor option
Browse files Browse the repository at this point in the history
Just pass it to the sign tool, like with --signtype
  • Loading branch information
mlschroe committed Jun 19, 2024
1 parent 2554ecd commit 5934781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/bs_notar
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ while (@ARGV) {
splice(@ARGV, 0, 2);
next;
}
if ($ARGV[0] eq '-P' || $ARGV[0] eq '--project' || $ARGV[0] eq '-u' || $ARGV[0] eq '--signtype') {
if ($ARGV[0] eq '-P' || $ARGV[0] eq '--project' || $ARGV[0] eq '-u' || $ARGV[0] eq '--signtype' || $ARGV[0] eq '--signflavor') {
push @signcmd, splice(@ARGV, 0, 2);
next;
}
Expand Down

0 comments on commit 5934781

Please sign in to comment.