Files
LNXSDK/Kha/get_dlc_dangerously.bat

27 lines
878 B
Batchfile
Raw Normal View History

2025-01-22 16:18:30 +01:00
@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
)
2026-05-21 23:40:20 -07:00
@if exist Backends\Kore-hxcpp\khacpp\LICENSE.txt (
@git submodule update --remote --merge Backends/Kore-hxcpp/khacpp
2025-01-22 16:18:30 +01:00
) else (
2026-05-21 23:40:20 -07:00
@git submodule update --init --remote Backends/Kore-hxcpp/khacpp
@git -C Backends/Kore-hxcpp/khacpp checkout main
2025-01-22 16:18:30 +01:00
)
@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
)
2026-05-21 23:40:20 -07:00
@if exist Kore\get_dlc_dangerously (
@git submodule update --remote --merge Kore
2025-01-22 16:18:30 +01:00
) else (
2026-05-21 23:40:20 -07:00
@git submodule update --init --remote Kore
@git -C Kore checkout v2
2025-01-22 16:18:30 +01:00
)
2026-05-21 23:40:20 -07:00
@call Kore\get_dlc_dangerously.bat
2025-01-22 16:18:30 +01:00
@popd