diff options
author | Stefan Talpalaru <stefantalpalaru@yahoo.com> | 2015-06-15 08:44:02 +0200 |
---|---|---|
committer | Stefan Talpalaru <stefantalpalaru@yahoo.com> | 2015-06-15 08:44:02 +0200 |
commit | bdac85f2cfbff9bab11f06c72f364523936a5487 (patch) | |
tree | 41313479b483459e312280cf42b6f862acba4bd3 /compiler/nodejs.nim | |
parent | 657d6f9de2d8fc8960fb703f927db2ff2070d5a4 (diff) | |
parent | 8c671d22d6a7c55e13e7c02eb4fd65bbabb52131 (diff) | |
download | Nim-bdac85f2cfbff9bab11f06c72f364523936a5487.tar.gz |
Merge branch 'devel' into gogc
Diffstat (limited to 'compiler/nodejs.nim')
-rw-r--r-- | compiler/nodejs.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/nodejs.nim b/compiler/nodejs.nim index e2b79df19..7f9f28aaf 100644 --- a/compiler/nodejs.nim +++ b/compiler/nodejs.nim @@ -4,3 +4,5 @@ proc findNodeJs*(): string = result = findExe("nodejs") if result == "": result = findExe("node") + if result == "": + result = findExe("iojs") |