mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 13:47:52 +00:00
13 lines
361 B
Batchfile
Executable File
13 lines
361 B
Batchfile
Executable File
@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\node\node-win32-%ARCH%.exe"
|
|
|
|
@IF NOT EXIST %NODE_PATH% (
|
|
set NODE_PATH="node.exe"
|
|
)
|
|
|
|
%NODE_PATH% "%~dp0\..\build\app.js" %*
|