summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2017-05-17 23:59:53 +0200
committerAraq <rumpf_a@web.de>2017-05-17 23:59:53 +0200
commitd3f0f87e81e262ee25fd528aae5b6db0bdf78d5e (patch)
tree958fab222ad33a33834657d58c41f96f86d52f3d
parentbf0afaf3c4a7f901a525cbb035d6421a2f30bfe8 (diff)
downloadNim-d3f0f87e81e262ee25fd528aae5b6db0bdf78d5e.tar.gz
niminst: add missing nimsuggest tool; small koch.nim cleanup
-rw-r--r--compiler/installer.ini2
-rw-r--r--koch.nim7
2 files changed, 2 insertions, 7 deletions
diff --git a/compiler/installer.ini b/compiler/installer.ini
index 0987aa6be..8cc89da9f 100644
--- a/compiler/installer.ini
+++ b/compiler/installer.ini
@@ -66,6 +66,8 @@ Files: "compiler"
 Files: "doc"
 Files: "doc/html"
 Files: "tools"
+Files: "nimsuggest"
+Files: "nimsuggest/tests/*.nim"
 Files: "web/website.ini"
 Files: "web/ticker.html"
 Files: "web/*.nim"
diff --git a/koch.nim b/koch.nim
index da99ea264..0fa06f273 100644
--- a/koch.nim
+++ b/koch.nim
@@ -421,14 +421,7 @@ proc winReleaseArch(arch: string) =
     # determine which mingw link to put in the NSIS installer.
     nimexec "c --out:koch_temp --cpu:$# koch" % cpu
     exec "koch_temp boot -d:release --cpu:$#" % cpu
-    exec "koch_temp nsis -d:release"
     exec "koch_temp zip -d:release"
-
-    when false:
-      # we now disable the NSIS installer as it cannot download from https
-      # and is broken in so many different ways it's not funny anymore:
-      moveFile r"build\nim_$#.exe" % VersionAsString,
-               r"web\upload\download\nim-$#_x$#.exe" % [VersionAsString, arch]
     moveFile r"build\nim-$#.zip" % VersionAsString,
              r"web\upload\download\nim-$#_x$#.zip" % [VersionAsString, arch]