Files
UnrealEngineUWP/Engine/Plugins/VirtualProduction/RemoteControlWebInterface/WebApp/Start.bat
Marc Audy 01b7c9f4f5 Merge UE5/RES @ 15958325 to UE5/Main
This represents UE4/Main @ 15913390 and Dev-PerfTest @ 15913304

[CL 15958515 by Marc Audy in ue5-main branch]
2021-04-08 14:32:07 -04:00

20 lines
637 B
Batchfile
Executable File

@echo off
rem First we check if nodejs is installed
for %%X in (node.exe) do (SET node=%%~$PATH:X)
if not defined node (
echo ERROR: Couldn't find node.js installed, Please install latest nodejs from https://nodejs.org/en/download/
exit 1
)
rem Let's check if it is a modern nodejs
node -e "process.exit( process.versions.node.split('.')[0] );"
echo Found Node.js version %errorlevel% (%node%)
if %errorlevel% LSS 8 (
echo ERROR: installed node.js version is too old, please install latest nodejs from https://nodejs.org/en/download/
exit 1
)
rem redirecting all command line arguments to node script
node Scripts/start.js %*