mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-29 01:51:43 +00:00
change --hint[X] => --hint:X in nim repo (avoids shell quoting issues) (#18085)
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user