Skip to content

Commit

Permalink
Update to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderSehr committed Dec 11, 2023
1 parent 3db259f commit 8999b79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function Set-BicepModuleStatusBadgesTable {
Write-Verbose ($badgesMarkdown | Out-String)

if ($PSCmdlet.ShouldProcess("File in path [$markdownFilePath]", 'Overwrite')) {
Set-Content -Path $markdownFilePath -Value $badgesMarkdown -Force
Set-Item -Path $markdownFilePath -Value $badgesMarkdown -Force
Write-Verbose "File [$markdownFilePath] updated" -Verbose
}
}
2 changes: 1 addition & 1 deletion utilities/tools/platform/Set-BicepModulesFeatureCSV.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function Set-BicepModulesFeatureCSV {
Write-Verbose ($featuresTable | Out-String)

if ($PSCmdlet.ShouldProcess("File in path [$featuresTable]", 'Overwrite')) {
Set-Content -Path $CSVFilePath -Value $featuresTable -Force
Set-Item -Path $CSVFilePath -Value $featuresTable -Force
Write-Verbose "File [$featuresTable] updated" -Verbose
}
}

0 comments on commit 8999b79

Please sign in to comment.