Skip to content

Commit 7d67115

Browse files
committed
Removed executable extension from imageName
Fixes double .exe on Windows
1 parent 530f912 commit 7d67115

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import org.graalvm.buildtools.utils.SharedConstants
2-
31
plugins {
42
id("application")
53
id("org.graalvm.buildtools.native") version "0.9.6"
@@ -36,7 +34,7 @@ graalvmNative {
3634
binaries {
3735
named("main") {
3836
buildArgs.add("-H:+AddAllCharsets")
39-
imageName.set(project.name + SharedConstants.EXECUTABLE_EXTENSION)
37+
imageName.set(project.name)
4038
javaLauncher.set(javaToolchains.launcherFor {
4139
languageVersion.set(JavaLanguageVersion.of(17))
4240
vendor.set(JvmVendorSpec.GRAAL_VM)

0 commit comments

Comments
 (0)