From 283eabf17478c611f4b8b2b6d28ab58c82e8affc Mon Sep 17 00:00:00 2001 From: SHOO Date: Sun, 25 Apr 2021 17:05:57 +0900 Subject: [PATCH] Fix #25 - The destination of GENDOC_DD_DIR is wrong --- source/gendoc/config.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/gendoc/config.d b/source/gendoc/config.d index edcf53e..db69c62 100644 --- a/source/gendoc/config.d +++ b/source/gendoc/config.d @@ -223,7 +223,7 @@ struct GendocConfig ? thisExePath.dirName.buildNormalizedPath("../etc/.gendoc/docs") : thisExePath.dirName.absolutePath, "GENDOC_DD_DIR": thisExePath.dirName.buildPath("ddoc").exists - ? thisExePath.dirName.buildPath("source_docs") + ? thisExePath.dirName.buildPath("ddoc") : thisExePath.dirName.buildPath("../etc/.gendoc/ddoc").exists ? thisExePath.dirName.buildNormalizedPath("../etc/.gendoc/ddoc") : thisExePath.dirName.absolutePath,