setup.bat 387 B

123456789101112131415161718
  1. @Rem Copyright Epic Games, Inc. All Rights Reserved.
  2. @echo off
  3. @Rem Set script location as working directory for commands.
  4. pushd "%~dp0"
  5. @Rem Ensure we have NodeJs available for calling.
  6. call setup_node.bat
  7. @Rem Move to matchmaker.js directory and install its package.json
  8. pushd %~dp0\..\..\
  9. call platform_scripts\cmd\node\npm install --no-save
  10. popd
  11. @Rem Pop working directory
  12. popd