@@ -148,7 +148,7 @@ class ScalaJsCliNativeImage(val scalaJsVersion0: String) extends ScalaModule wit
148148 System .err.println(s " Testing ${path.relativeTo(os.pwd)}" )
149149 val cwd = T .dest / " workdir"
150150 os.makeDir.all(cwd)
151- os.proc(bash, os.pwd / " scripts" / " test-cli.sh" , path)
151+ os.proc(bash, os.pwd / " scripts" / " test-cli.sh" , path, scalaJsVersion )
152152 .call(cwd = cwd, stdin = os.Inherit , stdout = os.Inherit )
153153 }
154154}
@@ -339,7 +339,7 @@ object ci extends Module {
339339 if (version.endsWith(" -SNAPSHOT" )) (" launchers" , true )
340340 else (" v" + version, false )
341341
342- Upload .upload(" scala-cli" , " scala-js-cli-native-image " , ghToken, tag, dryRun = false , overwrite = overwriteAssets)(launchers : _* )
342+ Upload .upload(" scala-cli" , " scala-js-cli" , ghToken, tag, dryRun = false , overwrite = overwriteAssets)(launchers : _* )
343343 }
344344
345345 def testCli () = {
@@ -353,7 +353,7 @@ object ci extends Module {
353353 System .err.println(s " Testing Scala.JS $scalaJsVer" )
354354 val cwd = workDir / scalaJsVer
355355 os.makeDir.all(cwd)
356- os.proc(bash, os.pwd / " scripts" / " test-cli.sh" , launcher.path)
356+ os.proc(bash, os.pwd / " scripts" / " test-cli.sh" , launcher.path, scalaJsVer )
357357 .call(cwd = cwd, stdin = os.Inherit , stdout = os.Inherit )
358358 }
359359 }
0 commit comments