Spaces:
Sleeping
Sleeping
File size: 363 Bytes
66c9c8a | 1 2 3 4 5 6 7 8 9 10 11 12 | @echo off
setlocal
call "%~dp0..\..\..\..\repo.bat" build --fetch-only
if %errorlevel% neq 0 ( exit /b %errorlevel% )
call "%~dp0..\..\..\..\repo.bat" publish_exts -c release --from-package %*
if %errorlevel% neq 0 ( exit /b %errorlevel% )
call "%~dp0..\..\..\..\repo.bat" publish_exts -c debug --from-package %*
if %errorlevel% neq 0 ( exit /b %errorlevel% )
|