diff options
author | Araq <rumpf_a@web.de> | 2017-03-09 14:58:14 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2017-03-09 14:58:14 +0100 |
commit | 475579541621ca83cfcbb35df7f5d9ef4236cdfa (patch) | |
tree | 81f95f9ae846b61c7f2878a275413f5a3fc9bea3 /koch.nim | |
parent | da821a22d9e390d59f66018630fb4c39ba83eaf3 (diff) | |
download | Nim-475579541621ca83cfcbb35df7f5d9ef4236cdfa.tar.gz |
nimsuggest: more precise cursor tracking
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/koch.nim b/koch.nim index 7c0193917..20d01ae98 100644 --- a/koch.nim +++ b/koch.nim @@ -214,9 +214,9 @@ proc buildNimble(latest: bool) = proc bundleNimsuggest(buildExe: bool) = if buildExe: - nimexec("c --noNimblePath -d:release -p:compiler tools/nimsuggest/nimsuggest.nim") - copyExe("tools/nimsuggest/nimsuggest".exe, "bin/nimsuggest".exe) - removeFile("tools/nimsuggest/nimsuggest".exe) + nimexec("c --noNimblePath -d:release -p:compiler nimsuggest/nimsuggest.nim") + copyExe("nimsuggest/nimsuggest".exe, "bin/nimsuggest".exe) + removeFile("nimsuggest/nimsuggest".exe) proc bundleWinTools() = nimexec("c tools/finish.nim") @@ -253,7 +253,7 @@ proc buildTool(toolname, args: string) = proc buildTools(latest: bool) = let nimsugExe = "bin/nimsuggest".exe nimexec "c --noNimblePath -p:compiler -d:release -o:" & nimsugExe & - " tools/nimsuggest/nimsuggest.nim" + " nimsuggest/nimsuggest.nim" let nimgrepExe = "bin/nimgrep".exe nimexec "c -o:" & nimgrepExe & " tools/nimgrep.nim" |