mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-10 03:47:44 -03:00
17 lines
335 B
Batchfile
17 lines
335 B
Batchfile
@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
|
|
|
|
python %makezip% %outdir% %cfg% %archive%
|