change --hint[X] => --hint:X in nim repo (avoids shell quoting issues) (#18085)

This commit is contained in:
Timothee Cour
2021-05-26 00:51:48 -07:00
committed by GitHub
parent 0b2bbcaa23
commit 3b1aabdcff
15 changed files with 25 additions and 25 deletions

View File

@@ -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: