@@ -16,7 +16,7 @@ import scala.jdk.CollectionConverters.*
1616/**
1717 * Common Code for supporting scripting tests.
1818 * To override the path to the bash executable, set TEST_BASH=<path-to-bash.exe>
19- * To specify where `dist[*]/target/pack /bin` resides, set TEST_CWD=<working-directory>
19+ * To specify where `dist[*]/target/universal/stage /bin` resides, set TEST_CWD=<working-directory>
2020 * Test scripts run in a bash env, so paths are converted to forward slash via .norm.
2121 */
2222object ScriptTestEnv {
@@ -48,7 +48,7 @@ object ScriptTestEnv {
4848 }
4949
5050 lazy val nativePackDir : Option [String ] = {
51- def nativeDir (os : String , arch : String ) = Some (s " dist/ $os- $arch/target/pack " )
51+ def nativeDir (os : String , arch : String ) = Some (s " dist/ $os- $arch/target/universal/stage " )
5252 def nativeOs (os : String ) = archNorm match
5353 case arch @ (" aarch64" | " x86_64" ) => nativeDir(os, arch)
5454 case _ => None
@@ -61,7 +61,7 @@ object ScriptTestEnv {
6161
6262 def jvmPackDir () =
6363 println(" warning: unknown OS architecture combination, defaulting to JVM launcher." )
64- " dist/target/pack "
64+ " dist/target/universal/stage "
6565
6666 def packDir : String = nativePackDir.getOrElse(jvmPackDir())
6767
@@ -302,7 +302,7 @@ object ScriptTestEnv {
302302 // use optional TEST_BASH if defined, otherwise, bash must be in PATH
303303
304304 // envScalaHome is:
305- // dist[*]/target/pack , if present
305+ // dist[*]/target/universal/stage , if present
306306 // else, SCALA_HOME if defined
307307 // else, not defined
308308 lazy val envScalaHome =
0 commit comments