Files

8 lines
285 B
Batchfile
Raw Permalink Normal View History

@echo off
REM Place a copy of this file inside an Entity folder (e.g. Entities\CAMBS\)
REM to run just that entity's upload.
set "ENTITY_DIR=%~dp0"
set "ENTITY_DIR=%ENTITY_DIR:~0,-1%"
powershell.exe -ExecutionPolicy Bypass -File "%~dp0..\..\engine.ps1" -EntityDir "%ENTITY_DIR%"
pause