From e23c9f13846ebba3706a60ea2e1960982d002883 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Thu, 12 Feb 2015 15:27:42 -0400 Subject: [PATCH] Fix node Windows absolute path --- bin/resin.cmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/resin.cmd b/bin/resin.cmd index 90d8614b..85f349f7 100755 --- a/bin/resin.cmd +++ b/bin/resin.cmd @@ -3,7 +3,7 @@ :: http://stackoverflow.com/questions/12322308/batch-file-to-check-64bit-or-32bit-os reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set ARCH=x86 || set ARCH=x64 -set NODE_PATH="%~dp0\bin\node\node-win32-%ARCH%.exe" +set NODE_PATH="%~dp0\node\node-win32-%ARCH%.exe" @IF NOT EXIST %NODE_PATH% ( set NODE_PATH="node.exe"