Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Commit

Permalink
Fix imports not working
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuildthecloud committed Jul 1, 2022
1 parent 7812a33 commit 5c2bf22
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/appdefinition/appdefinition.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const (
)

var Defaults = []byte(`
args: dev: bool | *false
profiles: dev: dev: bool | *true
`)
Expand Down Expand Up @@ -58,7 +59,7 @@ func NewAppDefinition(data []byte) (*AppDefinition, error) {
files := []cue.File{
{
Name: AcornCueFile,
Data: append(Defaults, data...),
Data: append(data, Defaults...),
},
}
ctx := cue.NewContext().
Expand Down

0 comments on commit 5c2bf22

Please sign in to comment.