Skip to content

Commit

Permalink
Fix apply (grafana#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmholmes authored Oct 14, 2020
1 parent cfe8301 commit 05597be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/grizzly/workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func Apply(config Config, jsonnetFile string, targets []string) error {
return err
}
resource = *provider.Prepare(*existingResource, resource)
existingResource = provider.Unprepare(resource)
existingResource = provider.Unprepare(*existingResource)
existingResourceRepresentation, err := existingResource.GetRepresentation()
if err != nil {
return nil
Expand Down

0 comments on commit 05597be

Please sign in to comment.