summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--koch.nim2
-rw-r--r--tools/kochdocs.nim2
2 files changed, 1 insertions, 3 deletions
diff --git a/koch.nim b/koch.nim
index 54f0a01da..0c24f70de 100644
--- a/koch.nim
+++ b/koch.nim
@@ -60,7 +60,6 @@ Commands for core developers:
   tests [options]          run the testsuite (run a subset of tests by
                            specifying a category, e.g. `tests cat async`)
   temp options             creates a temporary compiler for testing
-  winrelease               creates a Windows release
   pushcsource              push generated C sources to its repo
 Web options:
   --googleAnalytics:UA-... add the given google analytics code to the docs. To
@@ -530,7 +529,6 @@ when isMainModule:
     of "test", "tests": tests(op.cmdLineRest)
     of "temp": temp(op.cmdLineRest)
     of "xtemp": xtemp(op.cmdLineRest)
-    #of "winrelease": winRelease()
     of "wintools": bundleWinTools()
     of "nimble": buildNimble(existsDir(".git"))
     of "nimsuggest": bundleNimsuggest(buildExe=true)
diff --git a/tools/kochdocs.nim b/tools/kochdocs.nim
index 5e14666ab..d24eba5dc 100644
--- a/tools/kochdocs.nim
+++ b/tools/kochdocs.nim
@@ -3,7 +3,7 @@
 import os, strutils, osproc
 
 const
-  gaCode* = " --googleAnalytics:UA-48159761-1"
+  gaCode* = " --doc.googleAnalytics:UA-48159761-1"
 
   nimArgs = "--hint[Conf]:off --hint[Path]:off --hint[Processing]:off -d:boot --putenv:nimversion=$#" % system.NimVersion
   gitUrl = "https://github.com/nim-lang/Nim"