diff options
author | Araq <rumpf_a@web.de> | 2017-09-03 16:26:02 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-09-03 16:26:02 +0200 |
commit | a5b19ba86cd10c5e5de0d0a0f64fb0441f6f54be (patch) | |
tree | c36c40ab6e6a90252f274663f9b42d06dae9b141 /tools/winrelease.nim | |
parent | 9b2799bd643fb49ec99c8f75bbb80cde27caaf20 (diff) | |
download | Nim-a5b19ba86cd10c5e5de0d0a0f64fb0441f6f54be.tar.gz |
moved winrelease to its own tool to fix #6147
Diffstat (limited to 'tools/winrelease.nim')
-rw-r--r-- | tools/winrelease.nim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/winrelease.nim b/tools/winrelease.nim new file mode 100644 index 000000000..5a687cfaa --- /dev/null +++ b/tools/winrelease.nim @@ -0,0 +1,9 @@ +## This is a small helper program to build the Win release. +## This used to be part of koch (and it still uses koch as a library) +## but since 'koch.exe' cannot overwrite itself is now its own program. +## The problem is that 'koch.exe' too is part of the zip bundle and +## needs to have the right 32/64 bit version. (Bug #6147) + +import "../koch" + +winRelease() |