From fb4a96ff78e85537f248fe96d6508f1dffead297 Mon Sep 17 00:00:00 2001 From: Josh Girvin Date: Mon, 13 Jan 2014 02:43:50 +1000 Subject: [PATCH] Koch now uses PATH/nimrod correctly --- koch.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koch.nim b/koch.nim index 97fcf5b2c9..3b13690fab 100644 --- a/koch.nim +++ b/koch.nim @@ -111,7 +111,7 @@ proc findStartNimrod: string = result = "bin" / nimrod if ExistsFile(result): return for dir in split(getEnv("PATH"), PathSep): - if ExistsFile(dir / nimrod): return nimrod + if ExistsFile(dir / nimrod): return dir / nimrod when defined(Posix): const buildScript = "build.sh" if ExistsFile(buildScript):