-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_dlc_dangerously.bat
More file actions
27 lines (27 loc) · 880 Bytes
/
get_dlc_dangerously.bat
File metadata and controls
27 lines (27 loc) · 880 Bytes
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
@pushd "%~dp0"
@if exist Tools\khamake\khamake.js (
@git submodule update --remote --merge Tools/khamake
) else (
@git submodule update --init --remote Tools/khamake
@git -C Tools/khamake checkout main
)
@if exist Backends\Kinc-hxcpp\khacpp\LICENSE.txt (
@git submodule update --remote --merge Backends/Kinc-hxcpp/khacpp
) else (
@git submodule update --init --remote Backends/Kinc-hxcpp/khacpp
@git -C Backends/Kinc-hxcpp/khacpp checkout main
)
@if exist Tools\windows_x64\LICENSE.txt (
@git submodule update --remote --merge Tools/windows_x64
) else (
@git submodule update --init --remote Tools/windows_x64
@git -C Tools/windows_x64 checkout main
)
@if exist Kinc\get_dlc_dangerously (
@git submodule update --remote --merge Kinc
) else (
@git submodule update --init --remote Kinc
@git -C Kinc checkout main
)
@call Kinc\get_dlc_dangerously.bat
@popd