thorium-mirror/win_scripts/old/make_zip.bat
Ho Cheung ce732accf6 [infra] Refactored some sh files with python
1.Move *.bat files to //win_scripts/old. These
files have not been updated for a long time and
are not convenient to use.

2.Rewrite some sh files with python, currently
only for the parts applicable to Windows.

3.Some other related changes.
2024-10-22 10:17:11 +08:00

17 lines
337 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%\thorium-win64.zip
python3 %makezip% %outdir% %cfg% %archive%