diff options
-rw-r--r-- | doc/contributing.rst (renamed from contributing.rst) | 0 | ||||
-rw-r--r-- | doc/docs.rst (renamed from doc/docs.txt) | 0 | ||||
-rw-r--r-- | doc/docstyle.rst (renamed from docstyle.rst) | 0 | ||||
-rw-r--r-- | doc/overview.rst | 2 | ||||
-rw-r--r-- | koch.nim | 4 | ||||
-rw-r--r-- | tools/finish.nim (renamed from finish.nim) | 0 | ||||
-rw-r--r-- | web/website.ini | 2 |
7 files changed, 5 insertions, 3 deletions
diff --git a/contributing.rst b/doc/contributing.rst index 31f04a5e0..31f04a5e0 100644 --- a/contributing.rst +++ b/doc/contributing.rst diff --git a/doc/docs.txt b/doc/docs.rst index 4484784ae..4484784ae 100644 --- a/doc/docs.txt +++ b/doc/docs.rst diff --git a/docstyle.rst b/doc/docstyle.rst index d789b1df9..d789b1df9 100644 --- a/docstyle.rst +++ b/doc/docstyle.rst diff --git a/doc/overview.rst b/doc/overview.rst index 5b41752ae..e01520d7c 100644 --- a/doc/overview.rst +++ b/doc/overview.rst @@ -5,5 +5,5 @@ Nim Documentation Overview :Author: Andreas Rumpf :Version: |nimversion| -.. include:: ../doc/docs.txt +.. include:: docs.rst diff --git a/koch.nim b/koch.nim index bd7be9416..8262c7c3d 100644 --- a/koch.nim +++ b/koch.nim @@ -173,7 +173,9 @@ proc bundleNimsuggest(buildExe: bool) = copyExe("dist/nimsuggest/nimsuggest".exe, "bin/nimsuggest".exe) proc bundleFinishExe() = - exec(findNim() & " c finish.nim") + exec(findNim() & " c tools/finish.nim") + copyExe("tools/finish".exe, "finish".exe) + removeFile("tools/finish".exe) proc zip(args: string) = bundleNimbleSrc() diff --git a/finish.nim b/tools/finish.nim index 8b9acfc56..8b9acfc56 100644 --- a/finish.nim +++ b/tools/finish.nim diff --git a/web/website.ini b/web/website.ini index 833122ecb..0d1be4b63 100644 --- a/web/website.ini +++ b/web/website.ini @@ -31,7 +31,7 @@ file: ticker.html [Documentation] doc: "endb;intern;apis;lib;manual.rst;tut1.rst;tut2.rst;nimc;overview;filters" doc: "tools;niminst;nimgrep;gc;estp;idetools;docgen;koch;backends.rst" -doc: "nimfix.rst;nimsuggest.rst;nep1.rst;nims.rst" +doc: "nimfix.rst;nimsuggest.rst;nep1.rst;nims.rst;contributing.rst" pdf: "manual.rst;lib.rst;tut1.rst;tut2.rst;nimc.rst;niminst.rst;gc.rst" srcdoc2: "system.nim;system/nimscript;pure/ospaths" srcdoc2: "core/macros;pure/marshal;core/typeinfo" |