Skip to content

Commit

Permalink
Remove omitEmpty from Outputs Path
Browse files Browse the repository at this point in the history
Path is required in an output definition, so this removes the omitEmpty tag
from the JSON/mapstructure business.

Fixes #69
  • Loading branch information
jeremyrickard authored and glyn committed Jul 24, 2019
1 parent 7441af6 commit b00ad0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundle/outputs.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ type OutputDefinition struct {
Definition string `json:"definition" mapstructure:"definition"`
ApplyTo []string `json:"applyTo,omitempty" mapstructure:"applyTo,omitempty"`
Description string `json:"description,omitempty" mapstructure:"description"`
Path string `json:"path,omitemtpty" mapstructure:"path,omitempty"`
Path string `json:"path" mapstructure:"path"`
}

0 comments on commit b00ad0a

Please sign in to comment.