diff options
author | Araq <rumpf_a@web.de> | 2017-11-28 02:50:54 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-11-28 02:51:10 +0100 |
commit | 8c634cdb2b12c9dff15ac31820df7ecf0c6c3497 (patch) | |
tree | 17566870aba3c6ff2b870bbfa1a0523839a41f7a | |
parent | 95629acd4d2db5bfb8a7feb902f2b66ee5b2fa73 (diff) | |
download | Nim-8c634cdb2b12c9dff15ac31820df7ecf0c6c3497.tar.gz |
make the tests green again
-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 94cba4ffd..9a32636c2 100644 --- a/compiler/docgen.nim +++ b/compiler/docgen.nim @@ -793,7 +793,7 @@ proc commandRstAux(filename, outExt: string) = var outp: string if filename.len == 0: inc(d.id) - outp = getNimcacheDir() / splitFile(d.filename).name & "_snippet_" & $d.id & ".nim" + outp = completeGeneratedFilePath(splitFile(d.filename).name & "_snippet_" & $d.id & ".nim") elif isAbsolute(filename): outp = filename else: |