Skip to content

Commit

Permalink
Hotfix/footprint parse error2 (#1499)
Browse files Browse the repository at this point in the history
* hotfix for parse error in footprint
  • Loading branch information
motatoes committed May 23, 2024
1 parent 9b33704 commit 5b4f4e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/pkg/digger/digger.go
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ func RunJobs(
projectNameForBackendReporting := currentJob.ProjectName
// TODO: handle the apply result summary as well to report it to backend. Possibly reporting changed resources as well
// Some kind of generic terraform operation summary might need to be introduced
planResult := &execution.DiggerExecutorPlanResult{}
var planResult *execution.DiggerExecutorPlanResult = nil
if exectorResults[0].PlanResult != nil {
planResult = exectorResults[0].PlanResult
}
Expand Down

0 comments on commit 5b4f4e5

Please sign in to comment.