thorium/make_zip.bat

18 lines
336 B
Batchfile
Raw Normal View History

2022-04-11 15:08:11 -04:00
@echo on
if "%1" == "" (
echo usage: make_zip builddir
echo.
echo builddir build output directory ^(e.g., out\Release^)
goto :eof
)
setlocal
set makezip=chrome\tools\build\make_zip.py
set outdir=%1
set cfg=chrome\tools\build\win\FILES.cfg
set archive=%outdir%\chrome-win32.zip
2022-06-06 18:55:04 -04:00
python3 %makezip% %outdir% %cfg% %archive%