Enhances README and script improvements

Updates README to include HTML format, architecture overview,
and comprehensive feature descriptions. Improves build scripts
by adding cleanup of environment variables and validating Go
installation, reducing cross-platform build issues.

Fixes README inconsistencies and improves script reliability.
This commit is contained in:
2025-05-28 13:17:08 +02:00
parent cc11d2fd84
commit ce5b5c20bb
3 changed files with 109 additions and 5 deletions

View File

@ -531,6 +531,11 @@ try {
if ($Failed -gt 0) {
exit 1
}
# Clean up environment variables to avoid contaminating future builds
Remove-Item Env:GOOS -ErrorAction SilentlyContinue
Remove-Item Env:GOARCH -ErrorAction SilentlyContinue
Remove-Item Env:CGO_ENABLED -ErrorAction SilentlyContinue
} finally {
Pop-Location
}