Skip to content

Commit

Permalink
fix: ship not optional
Browse files Browse the repository at this point in the history
  • Loading branch information
morlay committed Aug 7, 2023
1 parent 2163ed7 commit a566ade
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions cuepkg/imagetool/project.cue
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@ package imagetool
#Project: {
version: string | *"dev"
revision: string | *""
mirror: #Mirror

mirror: #Mirror
auths: [Host=string]: #Auth

ship?: #Ship
ship: #Ship
ship: "auths": auths
ship: "mirror": mirror

if ship != _|_ {
ship: "auths": auths
ship: "mirror": mirror
}
...
}

0 comments on commit a566ade

Please sign in to comment.