From bec2be707ab8f73c83769fcc8b2846d84bd05e4f Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Mon, 27 Jun 2022 03:09:43 -0400 Subject: [PATCH] Fix sbtn building --- build.sbt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 2fc3ae23e..42a77a8a3 100644 --- a/build.sbt +++ b/build.sbt @@ -1163,8 +1163,7 @@ lazy val sbtClientProj = (project in file("client")) nativeImageReady := { () => () }, - nativeImage / name := s"sbtn${if (isWin) ".exe" else ""}", - nativeImageOutput := target.value / "bin" / (nativeImage / name).value, + nativeImageOutput := target.value / "bin" / "sbtn", nativeImageOptions ++= Seq( "--no-fallback", s"--initialize-at-run-time=sbt.client",