We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4f7dbd commit f8f98bdCopy full SHA for f8f98bd
src/jdk.incubator.jpackage/macosx/classes/jdk/incubator/jpackage/internal/MacAppImageBuilder.java
@@ -1,5 +1,5 @@
1
/*
2
- * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
@@ -823,6 +823,7 @@ public static void signAppBundle(
823
try {
824
List<String> args = new ArrayList<>();
825
args.addAll(Arrays.asList("codesign",
826
+ "-f",
827
"-s", signingIdentity, // sign with this key
828
"--prefix", identifierPrefix,
829
// use the identifier as a prefix
0 commit comments