File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ class TestRunner {
252252 let exitCode : Int
253253 let bash = file. makeCommandLine ( line, substitutor: substitutor)
254254 do {
255- let args = bash. split ( separator : " " ) . map { String ( $0 as Substring ) }
255+ let args = [ " /bin/ bash" , " -c " , bash ]
256256 let result = try Process . popen ( arguments: args)
257257 stdout = try result. utf8Output ( ) . chomp ( )
258258 stderr = " "
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import LiteSupport
77/// Runs `lite` looking for `.test` files and executing them.
88do {
99 let allPassed = try runLite (
10- substitutions: [ ( " echo " , " echo " ) ] ,
10+ substitutions: [ ( " echo " , " /bin/ echo" ) ] ,
1111 pathExtensions: [ " test " ] ,
1212 testDirPath: nil ,
1313 testLinePrefix: " // " ,
You can’t perform that action at this time.
0 commit comments