23 lines
573 B
Batchfile
23 lines
573 B
Batchfile
@echo off
|
|
|
|
set InputDir=%~dp0../updateVersion/org_res
|
|
set DiffTool=%~dp0diffTool.py
|
|
set PackTool=%~dp0make_package.py
|
|
set EnableEncrypt=1
|
|
set PlatformName=default
|
|
set EncryptKeyName=KFcw6Sow(z)@Rv
|
|
|
|
echo InputDir--------- %InputDir%
|
|
|
|
@echo ===========open diff tool===========
|
|
%PYTHON3_HOME%/python.exe %DiffTool% Platform=%PlatformName%
|
|
@echo =create version config success!!!=
|
|
|
|
pause
|
|
|
|
@echo ===========make zip===========
|
|
%PYTHON3_HOME%/python.exe %PackTool% Platform=%PlatformName% Encrypt=%EnableEncrypt% EncryptKey=%EncryptKeyName%
|
|
@echo =create zip success!!!=
|
|
|
|
pause
|