Skip to content

Commit

Permalink
correctly fix builderScopeString being "" (#3881)
Browse files Browse the repository at this point in the history
  • Loading branch information
billyb2 authored Aug 21, 2024
1 parent 5fed40b commit ec54ad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/build/imgsrc/resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ func (r *Resolver) BuildImage(ctx context.Context, streams *iostreams.IOStreams,
builderScopeString := flag.GetString(ctx, "depot-scope")

switch builderScopeString {
case "organization":
case "org", "":
builderScope = DepotBuilderScopeOrganization
case "app":
builderScope = DepotBuilderScopeApp
Expand Down

0 comments on commit ec54ad9

Please sign in to comment.