-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrelease.bat
43 lines (30 loc) · 947 Bytes
/
release.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
pushd %~dp0
rmdir /s /q /f %~dp0/release
mkdir %~dp0/release
set CMDS_STUBS_FORCE_OVERWRITE=1
set CMDS_STUBS_SOURCE_DIR=%~dp0\source\2023
set CMDS_STUBS_TARGET_DIR=%~dp0\release\2023\both\
set CMDS_STUBS_LONG_ARGS=1
set CMDS_STUBS_SHORT_ARGS=1
python.exe main.py
set CMDS_STUBS_TARGET_DIR=%~dp0\release\2023\long\
set CMDS_STUBS_LONG_ARGS=1
set CMDS_STUBS_SHORT_ARGS=0
python.exe main.py
set CMDS_STUBS_TARGET_DIR=%~dp0\release\2023\short\
set CMDS_STUBS_LONG_ARGS=0
set CMDS_STUBS_SHORT_ARGS=1
python.exe main.py
set CMDS_STUBS_SOURCE_DIR=%~dp0\source\2024
set CMDS_STUBS_TARGET_DIR=%~dp0\release\2024\both\
set CMDS_STUBS_LONG_ARGS=1
set CMDS_STUBS_SHORT_ARGS=1
python.exe main.py
set CMDS_STUBS_TARGET_DIR=%~dp0\release\2024\long\
set CMDS_STUBS_LONG_ARGS=1
set CMDS_STUBS_SHORT_ARGS=0
python.exe main.py
set CMDS_STUBS_TARGET_DIR=%~dp0\release\2024\short\
set CMDS_STUBS_LONG_ARGS=0
set CMDS_STUBS_SHORT_ARGS=1
python.exe main.py