mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 16:12:19 +00:00
Adds TG's mapmerge2, a new TGM-compatible merger that handles things like dictionary expansion much better than the old tool, as well as supporting a git merge hook for map files. This PR does not remove the old merger as this one is more annoying to setup.
15 lines
285 B
Batchfile
15 lines
285 B
Batchfile
@echo off
|
|
cd %~dp0
|
|
for %%f in (*.hook) do (
|
|
echo Installing hook: %%~nf
|
|
copy %%f ..\..\.git\hooks\%%~nf >nul
|
|
)
|
|
for %%f in (*.merge) do (
|
|
echo Installing merge driver: %%~nf
|
|
echo [merge "%%~nf"]^
|
|
|
|
driver = tools/hooks/%%f %%P %%O %%A %%B %%L >> ..\..\.git\config
|
|
)
|
|
echo Done
|
|
pause
|