aboutsummaryrefslogtreecommitdiff
path: root/download_sample_resources.bat
blob: 94e386e67929289e1475acfb533da7c18d6ea3ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
:: Reset errorlevel status so we are not inheriting this state from the calling process:
@call :CLEAN_EXIT

:: Run packman to pull resources
@echo Running packman to pull resources...
@call "%~dp0buildtools\packman\packman.cmd" pull "%~dp0\samples\resources\configs\resources.xml" --platform win
@if %ERRORLEVEL% neq 0 (
    @exit /b %errorlevel%
) else (
    @echo Success!
)

:CLEAN_EXIT
@exit /b 0