We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8f44ba commit 6d3dd73Copy full SHA for 6d3dd73
tools/Github/ParseServiceContactsList.ps1
@@ -126,3 +126,6 @@ $updatedJsonObjectGraph = [Newtonsoft.Json.JsonConvert]::DeserializeObject[Syste
126
$yamlSerializer = [YamlDotNet.Serialization.SerializerBuilder]::new().Build()
127
$updatedYamlContent = $yamlSerializer.Serialize($updatedJsonObjectGraph)
128
$updatedYamlContent | Out-File -FilePath $yamlConfigPath -NoNewline -Force
129
+
130
+# Remove trailing space on each line
131
+(Get-Content -Path $yamlConfigPath) | ForEach-Object { $_.TrimEnd() } | Set-Content -Path $yamlConfigPath
0 commit comments