Skip to content

Commit 0e3d43f

Browse files
author
gkbrown
committed
Give launcher executable world execute permission.
git-svn-id: https://svn.java.net/svn/appbundler~svn@25 07572b26-92e5-4d45-f66a-c18421440a21
1 parent 926e06e commit 0e3d43f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

appbundler/src/com/oracle/appbundler/AppBundlerTask.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public void execute() throws BuildException {
274274
File executableFile = new File(macOSDirectory, EXECUTABLE_NAME);
275275
copy(getClass().getResource(executableFile.getName()), executableFile);
276276

277-
executableFile.setExecutable(true);
277+
executableFile.setExecutable(true, false);
278278

279279
// Copy runtime to PlugIns folder
280280
copyRuntime(plugInsDirectory);

0 commit comments

Comments
 (0)