diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-06-10 21:13:25 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-06-10 21:13:25 +0200 |
commit | a041ef68a144a85dafcafa8ffd847d17d0c33974 (patch) | |
tree | a57944e88e298461d1e257760f44bd25a3e1cfc6 /compiler | |
parent | a9e791823e749bfe9ff1a9ebfab66e1d0112572c (diff) | |
parent | ee3d390b3ffc394fca27fef42e7e36277df22dad (diff) | |
download | Nim-a041ef68a144a85dafcafa8ffd847d17d0c33974.tar.gz |
Merge pull request #2862 from ozra/bugfix-2858-testament-sources-system-wide
Bugfix 2858 Testament Sources Files System Wide
Diffstat (limited to 'compiler')
-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") |