fix: normalize Tower deploy script for bash
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s

This commit is contained in:
Jens
2026-07-26 00:46:07 +02:00
parent 91c1825892
commit 27f4185a1b
+2 -1
View File
@@ -44,7 +44,8 @@ $localScriptPath = [System.IO.Path]::GetTempFileName()
$remoteScriptPath = "/tmp/geointel-deploy-$([System.Guid]::NewGuid().ToString('N')).sh"
try {
[System.IO.File]::WriteAllText($localScriptPath, $remoteScript, $utf8NoBom)
$remoteScriptLf = $remoteScript -replace "`r`n", "`n"
[System.IO.File]::WriteAllText($localScriptPath, $remoteScriptLf, $utf8NoBom)
$scpArgs = @(
"-o", "BatchMode=yes",