Skip to content

Commit f8f98bd

Browse files
author
Alexander Matveev
committedJan 24, 2020
8237607: [macos] Signing app bundle with jpackage fails if runtime is already signed
Reviewed-by: herrick, asemenyuk, kcr
1 parent f4f7dbd commit f8f98bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/jdk.incubator.jpackage/macosx/classes/jdk/incubator/jpackage/internal/MacAppImageBuilder.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -823,6 +823,7 @@ public static void signAppBundle(
823823
try {
824824
List<String> args = new ArrayList<>();
825825
args.addAll(Arrays.asList("codesign",
826+
"-f",
826827
"-s", signingIdentity, // sign with this key
827828
"--prefix", identifierPrefix,
828829
// use the identifier as a prefix

0 commit comments

Comments
 (0)
Please sign in to comment.