diff options
Diffstat (limited to 'compiler/docgen.nim')
-rw-r--r-- | compiler/docgen.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/docgen.nim b/compiler/docgen.nim index ff9e8b8f4..6d105f722 100644 --- a/compiler/docgen.nim +++ b/compiler/docgen.nim @@ -474,7 +474,7 @@ proc runAllExamples(d: PDoc) = # most useful semantics is that `docCmd` comes after `rdoccmd`, so that we can (temporarily) override # via command line let cmd = "$nim $backend -r --lib:$libpath --warning:UnusedImport:off --path:$path --nimcache:$nimcache $rdoccmd $docCmd $file" % [ - "nim", os.getAppFilename(), + "nim", quoteShell(os.getAppFilename()), "backend", $d.conf.backend, "path", quoteShell(d.conf.projectPath), "libpath", quoteShell(d.conf.libpath), |