Skip to content

Commit

Permalink
Make PowerShell scripts conform to Spotless formatting rules (#1943)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Apr 5, 2023
1 parent 5c8642f commit 35d6a34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions updatecli/update-jenkins.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ if ($changed) {
$streamWriter = New-Object System.IO.StreamWriter($pomPath, $false, $utf8WithoutBom)
$pom.Save($streamWriter)
$streamWriter.Close()
(Get-Content $pomPath) -creplace 'utf-8', 'UTF-8' | Set-Content $pomPath
}
}
1 change: 1 addition & 0 deletions updatecli/update-plugin.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@ if ($changed) {
$streamWriter = New-Object System.IO.StreamWriter($PomPath, $false, $utf8WithoutBom)
$pom.Save($streamWriter)
$streamWriter.Close()
(Get-Content $PomPath) -creplace 'utf-8', 'UTF-8' | Set-Content $PomPath
}
}

0 comments on commit 35d6a34

Please sign in to comment.