updated as review requested

This commit is contained in:
MrTheShy 2026-03-11 23:22:13 +01:00
parent b941a27b90
commit bcc8fe25ea
2 changed files with 3 additions and 4 deletions

View file

@ -39,3 +39,5 @@ foreach ($copy in $copies) {
xcopy /q /y /i /s /e /d "$src" "$dst" 2>$null xcopy /q /y /i /s /e /d "$src" "$dst" 2>$null
} }
} }
git restore "**/BuildVer.h"

View file

@ -42,7 +42,4 @@ $existing = if (Test-Path $path) { Get-Content $path -Raw } else { "" }
if ($existing.Trim() -ne $newContent.Trim()) { if ($existing.Trim() -ne $newContent.Trim()) {
$newContent | Set-Content $path $newContent | Set-Content $path
Write-Host "BuildVer.h aggiornato."
} else {
Write-Host "BuildVer.h invariato, skip."
} }