diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-02-10 22:24:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 07:24:53 +0100 |
commit | b7dd8e7dff633692f61f8393315016fb4e9bdbee (patch) | |
tree | c74a3271b640288dd09802659298c393f5bbf6ff /tools/kochdocs.nim | |
parent | d4f7f1d8f3ce28c92ef2fd5acea51ba41ff235c0 (diff) | |
download | Nim-b7dd8e7dff633692f61f8393315016fb4e9bdbee.tar.gz |
unbundle fusion (#16925)
* unbundle fusion * changelog * address comment: `./koch fusion` calls nimble install fusion (at a fixed hash)
Diffstat (limited to 'tools/kochdocs.nim')
-rw-r--r-- | tools/kochdocs.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim index 8ae0b6ed4..992725a2e 100644 --- a/tools/kochdocs.nim +++ b/tools/kochdocs.nim @@ -190,7 +190,7 @@ lib/system/widestrs.nim proc follow(a: PathEntry): bool = result = a.path.lastPathPart notin ["nimcache", htmldocsDirname, "includes", "deprecated", "genode"] and - not a.path.isRelativeTo("lib/fusion") + not a.path.isRelativeTo("lib/fusion") # fusion was un-bundled but we need to keep this in case user has it installed for entry in walkDirRecFilter("lib", follow = follow): let a = entry.path if entry.kind != pcFile or a.splitFile.ext != ".nim" or |