We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a384a3f commit 6116671Copy full SHA for 6116671
src/main/java/io/github/fvarrui/javapackager/packagers/MacPackager.java
@@ -37,6 +37,12 @@ public File getAppFile() {
37
public void doInit() throws Exception {
38
39
this.macConfig.setDefaults(this);
40
+
41
+ // FIX useResourcesAsWorkingDir=false doesn't work fine on Mac OS (option disabled)
42
+ if (!this.isUseResourcesAsWorkingDir()) {
43
+ this.useResourcesAsWorkingDir = true;
44
+ Logger.warn("'useResourcesAsWorkingDir' property disabled on Mac OS (useResourcesAsWorkingDir is always true)");
45
+ }
46
47
}
48
0 commit comments