mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-01 19:02:18 +00:00
fix nightlies builds on Windows (#13587)
Before the files that should have been ignored weren't ignored
because of different dir separator ('\' vs '/') on Windows.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
## Part of 'koch' responsible for the documentation generation.
|
||||
|
||||
import os, strutils, osproc, sets
|
||||
import os, strutils, osproc, sets, pathnorm
|
||||
|
||||
const
|
||||
gaCode* = " --doc.googleAnalytics:UA-48159761-1"
|
||||
@@ -195,11 +195,11 @@ lib/system/widestrs.nim
|
||||
a.isRelativeTo("lib/pure/includes") or
|
||||
a.isRelativeTo("lib/genode") or
|
||||
a.isRelativeTo("lib/deprecated") or
|
||||
(a.isRelativeTo("lib/system") and a notin goodSystem) or
|
||||
a in docIgnore:
|
||||
(a.isRelativeTo("lib/system") and a.replace('\\', '/') notin goodSystem) or
|
||||
a.replace('\\', '/') in docIgnore:
|
||||
continue
|
||||
result.add a
|
||||
result.add "nimsuggest/sexp.nim"
|
||||
result.add normalizePath("nimsuggest/sexp.nim")
|
||||
|
||||
let doc = getDocList()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user