Skip to content

Commit

Permalink
Merge pull request #2614 from OctopusDeploy/mattc/script-fix
Browse files Browse the repository at this point in the history
Fixed up the example script
  • Loading branch information
steve-fenton-octopus authored Jan 27, 2025
2 parents 27e573d + 452ee34 commit f84dbb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $templates.Items | ForEach-Object {
$template = $_
$name = $template.Name.Replace(" ", "-")
Write-Host "Writing $PSScriptRoot/step-templates/$name.json"
($template | ConvertTo-Json) | Out-File -FilePath "$PSScriptRoot/step-templates/$name.json"
($template | ConvertTo-Json -Depth 100) | Out-File -FilePath "$PSScriptRoot/step-templates/$name.json"
}
```

Expand Down

0 comments on commit f84dbb1

Please sign in to comment.