Skip to content

Commit

Permalink
fix default value for depot-scope (#3880)
Browse files Browse the repository at this point in the history
  • Loading branch information
billyb2 authored Aug 21, 2024
1 parent ddf6ed1 commit 5fed40b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/flag/flag.go
Original file line number Diff line number Diff line change
Expand Up @@ -563,8 +563,8 @@ func Depot() Bool {
func DepotScope() String {
return String{
Name: "depot-scope",
Description: "The scope of the Depot builder's cache to use (organization or app)",
Default: "organization",
Description: "The scope of the Depot builder's cache to use (org or app)",
Default: "org",
}
}

Expand Down

1 comment on commit 5fed40b

@jtarchie
Copy link

@jtarchie jtarchie commented on 5fed40b Aug 21, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will that resolve here? @billyb2

Please sign in to comment.