diff options
author | Araq <rumpf_a@web.de> | 2019-08-16 14:37:52 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-08-16 14:37:52 +0200 |
commit | 7023241aaf5c533d0be9d70b49ad40c185b492b7 (patch) | |
tree | 9704ff1e8c1ac6deb4a173eab8348940a95674f0 /compiler/docgen.nim | |
parent | bebda3851f0f9d3433c4df773bd6984a009a045f (diff) | |
download | Nim-7023241aaf5c533d0be9d70b49ad40c185b492b7.tar.gz |
fixes #11819
Diffstat (limited to 'compiler/docgen.nim')
-rw-r--r-- | compiler/docgen.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/docgen.nim b/compiler/docgen.nim index e214ece4a..3e2e5eac6 100644 --- a/compiler/docgen.nim +++ b/compiler/docgen.nim @@ -406,6 +406,7 @@ proc runAllExamples(d: PDoc) = elif isDefined(d.conf, "objc"): "objc" else: "c" if os.execShellCmd(os.getAppFilename() & " " & backend & + " --warning[UnusedImport]:off" & " --path:" & quoteShell(d.conf.projectPath) & " --nimcache:" & quoteShell(outputDir) & " -r " & quoteShell(outp)) != 0: |