Skip to content

Commit 52f3d64

Browse files
rodneyxrxingzhang-suse
authored andcommitted
fix typo in java security properties param
Fixed double equal sign causing java.security.properties not to be loaded.
1 parent aee7c5c commit 52f3d64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package/entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ exec java \
1616
--add-opens=java.base/java.lang=ALL-UNNAMED \
1717
--add-opens=java.base/java.lang.reflect=ALL-UNNAMED \
1818
--add-opens=java.base/java.util=ALL-UNNAMED \
19-
-Djava.security.properties=="$JAVA_SECURITY_FILE" \
20-
-jar /usr/local/bin/admin-assembly-1.0.jar
19+
-Djava.security.properties="$JAVA_SECURITY_FILE" \
20+
-jar /usr/local/bin/admin-assembly-1.0.jar

0 commit comments

Comments
 (0)