Files
Sinmai-Assist/PostBuild.bat
2025-10-13 18:17:54 +08:00

25 lines
832 B
Batchfile

@echo off
where git >nul 2>nul
if errorlevel 1 (
echo Git is not installed. Using default commit hash.
set COMMIT_HASH="NOT SET"
) else (
for /f "tokens=1" %%i in ('git rev-parse --short HEAD') do set COMMIT_HASH=%%i
)
for /f "usebackq delims=" %%t in (`powershell -Command "( Get-Date -Format 'yyyyMMddHHmmss')"`) do (
set TIMESTAMP=%%t
)
echo CommitHash="%COMMIT_HASH%"
echo BuildDate="%TIMESTAMP%"
copy /y ".\Sinmai-Assist.dll" "..\Out\Mods\"
@REM copy /y ".\YamlDotNet.dll" "..\Out\UserLibs\"
copy /y "..\config - zh_CN.yml" "..\Out\Sinmai-Assist\config.yml"
@REM 7z a -tzip "..\PostBuilds\Sinmai-Assist_%COMMIT_HASH%_%TIMESTAMP%".zip "..\Out\*"
@REM
@REM set GamePath="G:\maimai\maimai2024\Package\"
@REM copy /y ".\Sinmai-Assist.dll" "%GamePath%Mods\"
@REM copy /y ".\YamlDotNet.dll" "%GamePath%UserLibs\"