Skip to content

Commit

Permalink
Allow compile command without auth (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSGK authored May 10, 2024
1 parent 972134f commit aeb56dd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions cmd/lekko/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,7 @@ func compileCmd() *cobra.Command {
Use: "compile [namespace[/config]]",
Short: "compiles configs based on individual definitions",
RunE: func(cmd *cobra.Command, args []string) error {
rs := secrets.NewSecretsOrFail()
r, err := repo.NewLocal(wd, rs)
r, err := repo.NewLocal(wd, nil)
if err != nil {
return err
}
Expand Down

0 comments on commit aeb56dd

Please sign in to comment.