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

@ -38,4 +38,6 @@ foreach ($copy in $copies) {
# Copy the files using xcopy, forcing overwrite and suppressing errors, and only copying if the source is newer than the destination
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()) {
$newContent | Set-Content $path
Write-Host "BuildVer.h aggiornato."
} else {
Write-Host "BuildVer.h invariato, skip."
}