You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seem like the environment variable nimversion does not get correctly passed. Probably, changing the procedure signature buildPdfDoc*(nimArgs, destPath: string) to buildPdfDoc*(args: string, destPath: string) in tools/kochdocs.nim and adding let args = nimArgs & " " & args to the body (as in buildDocsDir) would fix it.
Additional Information
No response
The text was updated successfully, but these errors were encountered:
Description
When compiling the PDF documentation with
koch pdf
the string|nimversion|
in the Markdown files is not substituted.Nim Version
Nim Compiler Version 2.0.8 [Linux: amd64]
Compiled at 2024-07-03
Copyright (c) 2006-2023 by Andreas Rumpf
git hash: 5935c3b
active boot switches: -d:release
Current Output
Expected Output
No response
Possible Solution
It seem like the environment variable nimversion does not get correctly passed. Probably, changing the procedure signature
buildPdfDoc*(nimArgs, destPath: string)
tobuildPdfDoc*(args: string, destPath: string)
intools/kochdocs.nim
and addinglet args = nimArgs & " " & args
to the body (as inbuildDocsDir
) would fix it.Additional Information
No response
The text was updated successfully, but these errors were encountered: