Skip to content

Commit

Permalink
Using longer local variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
JaroslavTulach committed Jul 6, 2024
1 parent 2bd08b1 commit bbbbf25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/NativeImage.scala
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ object NativeImage {
Seq("-jar", pathToJAR.toString)
}

val td = (Compile / target).value
val argFile = td.toPath.resolve(NATIVE_IMAGE_ARG_FILE)
val targetDirValue = (Compile / target).value
val argFile = targetDirValue.toPath.resolve(NATIVE_IMAGE_ARG_FILE)
IO.writeLines(argFile.toFile, args, append = false)

val pathParts = pathExts ++ Option(System.getenv("PATH")).toSeq
Expand Down

0 comments on commit bbbbf25

Please sign in to comment.