Comment source of Windows arch snippet

This commit is contained in:
Juan Cruz Viotti 2015-02-12 15:20:09 -04:00
parent 8263c23390
commit fe9e76cdff

View File

@ -1,5 +1,6 @@
@echo off
:: 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"