Skip to content

Commit b99a637

Browse files
committed
Fix build.
1 parent e2071b2 commit b99a637

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

develnext/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ def makeExe = { file ->
5252
args file
5353
}
5454
} else if (System.properties['os.name'].toLowerCase().contains('linux')) {
55-
file("$project.rootDir/develnext-tools/Launch4jLinux/launch4j").setExecutable(true, true);
56-
file("$project.rootDir/develnext-tools/Launch4jLinux/bin/windres").setExecutable(true, true);
57-
file("$project.rootDir/develnext-tools/Launch4jLinux/bin/ld").setExecutable(true, true);
55+
new File("$project.rootDir/develnext-tools/Launch4jLinux/launch4j").setExecutable(true, true);
56+
new File("$project.rootDir/develnext-tools/Launch4jLinux/bin/windres").setExecutable(true, true);
57+
new File("$project.rootDir/develnext-tools/Launch4jLinux/bin/ld").setExecutable(true, true);
5858

5959
exec {
6060
commandLine "$project.rootDir/develnext-tools/Launch4jLinux/launch4j"

0 commit comments

Comments
 (0)