Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov committed Oct 29, 2024
1 parent 6901c32 commit 1922b99
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ object IDLTestTools {
"#!/usr/bin/env bash",
"set -xe",
s"cd ${workDir.toAbsolutePath}",
) ++ env.map(kv => s"export ${kv._1}=${kv._2}") ++ Seq("env") ++ Seq(cmd.map(s => s"\"$s\"").mkString("", " \\\n ", "\n"))
) ++ env.map(kv => s"export ${kv._1}=${kv._2}") ++ Seq("env") ++ Seq(cmd.map(s => "\"" + s + "\"").mkString("", " \\\n ", "\n"))

val cmdSh = commands.mkString("\n")

Expand Down

0 comments on commit 1922b99

Please sign in to comment.