fixes #491
This commit is contained in:
parent
02945e57b5
commit
12b5a9a4d1
2 changed files with 2 additions and 2 deletions
|
|
@ -34,7 +34,7 @@ proc execNimble(args: varargs[string]): tuple[output: string, exitCode: int] =
|
|||
var quotedArgs = @args
|
||||
quotedArgs.insert(nimblePath)
|
||||
quotedArgs.add("--nimbleDir:" & installDir)
|
||||
quotedArgs = quoted_args.map((x: string) => ("\"" & x & "\""))
|
||||
quotedArgs = quotedArgs.map((x: string) => ("\"" & x & "\""))
|
||||
|
||||
result = execCmdEx(quotedArgs.join(" "))
|
||||
checkpoint(result.output)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue