summary refs log tree commit diff stats
path: root/tests/osproc/treadlines.nim
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-05-26 00:51:48 -0700
committerGitHub <noreply@github.com>2021-05-26 09:51:48 +0200
commit3b1aabdcffafbbf37ad02f013f754f67dfe2461c (patch)
tree9f676eb0fede03899179840249bfe58003a80e6e /tests/osproc/treadlines.nim
parent0b2bbcaa23f91b06bc06dd2cf35d4d26a6d24aa8 (diff)
downloadNim-3b1aabdcffafbbf37ad02f013f754f67dfe2461c.tar.gz
change `--hint[X] => --hint:X` in nim repo (avoids shell quoting issues) (#18085)
Diffstat (limited to 'tests/osproc/treadlines.nim')
-rw-r--r--tests/osproc/treadlines.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/osproc/treadlines.nim b/tests/osproc/treadlines.nim
index bcde19d7f..200a7c299 100644
--- a/tests/osproc/treadlines.nim
+++ b/tests/osproc/treadlines.nim
@@ -13,7 +13,7 @@ var ps: seq[Process] # compile & run 2 progs in parallel
 const nim = getCurrentCompilerExe()
 for prog in ["a", "b"]:
   ps.add startProcess(nim, "",
-                      ["r", "--hint[Conf]=off", "--hint[Processing]=off", prog],
+                      ["r", "--hint:Conf:off", "--hint:Processing:off", prog],
                       options = {poUsePath, poDaemon, poStdErrToStdOut})
 
 for p in ps: