Skip to content

Commit 6398eb3

Browse files
authored
A quick fix for command construction in detect.kk (#44)
1 parent 305098e commit 6398eb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

std/test/detect.kk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fun main()
3030
// basic escaping effort, TODO a version of run-system that accepts a list of args
3131
"'" ++ arg ++ "'"
3232
.join(" ")
33-
val cmd = "koka -e " ++ test-path.string ++ " -- " ++ args
33+
val cmd = "koka -e " ++ test-path.string ++ " " ++ args
3434

3535
println(" + " ++ cmd)
3636
val status = run-system(cmd)

0 commit comments

Comments
 (0)