This commit is contained in:
crschnick
2026-05-25 17:41:32 +00:00
parent 7194fc6623
commit 55c11bb22a
3 changed files with 9 additions and 2 deletions
@@ -25,6 +25,9 @@ public class LocalExec {
// https://bugs.openjdk.org/browse/JDK-8360500
env.remove("_JPACKAGE_LAUNCHER");
env.remove("_JAVA_OPTIONS");
env.remove("JAVA_TOOL_OPTIONS");
return pb.start();
} catch (Exception ex) {
TrackEvent.withTrace("Local command finished")
@@ -48,6 +51,9 @@ public class LocalExec {
// https://bugs.openjdk.org/browse/JDK-8360500
env.remove("_JPACKAGE_LAUNCHER");
env.remove("_JAVA_OPTIONS");
env.remove("JAVA_TOOL_OPTIONS");
var process = pb.start();
var out = process.getInputStream().readAllBytes();
process.waitFor();
+1
View File
@@ -72,6 +72,7 @@ open module io.xpipe.app {
requires com.fasterxml.jackson.core;
requires com.fasterxml.jackson.databind;
requires com.fasterxml.jackson.annotation;
requires com.fasterxml.jackson.datatype.jsr310;
requires net.synedra.validatorfx;
requires io.xpipe.modulefs;
requires static lombok;
+2 -2
View File
@@ -229,7 +229,7 @@ def getCliJvmArgs() {
// GC config
jvmRunArgs += [
'-XX:+UseG1GC',
'-Xms50m',
'-Xms60m',
'-Xmx250m',
// The default makes GC pauses longer for some reason
'-XX:G1HeapRegionSize=4m'
@@ -311,7 +311,7 @@ project.ext {
ci = System.getenv('CI') != null
obfuscate = true
fullVersion = file("$rootDir/private_files.txt").exists()
bundleCds = true
bundleCds = ci && fullVersion
// Names
productName = isStage ? 'XPipe PTB' : 'XPipe'