Skip to content

Commit 5b4f4e5

Browse files
authored
Hotfix/footprint parse error2 (#1499)
* hotfix for parse error in footprint
1 parent 9b33704 commit 5b4f4e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/pkg/digger/digger.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ func RunJobs(
150150
projectNameForBackendReporting := currentJob.ProjectName
151151
// TODO: handle the apply result summary as well to report it to backend. Possibly reporting changed resources as well
152152
// Some kind of generic terraform operation summary might need to be introduced
153-
planResult := &execution.DiggerExecutorPlanResult{}
153+
var planResult *execution.DiggerExecutorPlanResult = nil
154154
if exectorResults[0].PlanResult != nil {
155155
planResult = exectorResults[0].PlanResult
156156
}

0 commit comments

Comments
 (0)