Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion planner/plansdk/plansdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ type Plan struct {
// Ex: python main.py
StartStage *Stage `json:"start_stage,omitempty"`

Definitions []string `cue:"[...string]" json:"definitions"`
Definitions []string `cue:"[...string]" json:"definitions,omitempty"`
// Errors from plan generation. This usually means
// the user application may not be buildable.
Errors []PlanError `json:"errors,omitempty"`
Expand Down
3 changes: 1 addition & 2 deletions testdata/zig/zig-hello-world/plan.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@
"input_files": [
"./zig-out/bin/"
]
},
"definitions": null
}
}