run_local.bat 429 B

12345678910111213141516171819202122232425
  1. @Rem Copyright Epic Games, Inc. All Rights Reserved.
  2. @echo off
  3. @Rem Set script directory as working directory.
  4. pushd "%~dp0"
  5. title Cirrus
  6. @Rem Run setup to ensure we have node and cirrus installed.
  7. call setup.bat
  8. @Rem Move to cirrus directory.
  9. pushd ..\..
  10. @Rem Run node server and pass any argument along.
  11. platform_scripts\cmd\node\node.exe cirrus %*
  12. @Rem Pop cirrus directory.
  13. popd
  14. @Rem Pop script directory.
  15. popd
  16. pause