Skip to content

Commit

Permalink
chore: fix ..
Browse files Browse the repository at this point in the history
  • Loading branch information
ericzzzzzzz committed Dec 11, 2023
1 parent 604205f commit c6ba7ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/skaffold/hooks/render_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ spec:
{
HostHook: &latest.PostRenderHostHook{
OS: []string{"windows"},
Command: []string{"cmd.exe", "/C", `ForEach-Object { $_ -replace "before", "after" }`},
Command: []string{"powershell", "-Command", `$input | ForEach-Object { $_ -replace "before", "after" }`},
WithChange: true,
},
},
Expand Down Expand Up @@ -287,7 +287,7 @@ spec:
{
HostHook: &latest.PostRenderHostHook{
OS: []string{"windows"},
Command: []string{"cmd.exe", "/C", `ForEach-Object { $_ -replace "before", "after" }`},
Command: []string{"pwsh", "-Command", `$input | ForEach-Object { $_ -replace "before", "after" }`},
WithChange: false,
},
},
Expand Down

0 comments on commit c6ba7ee

Please sign in to comment.