Skip to content

Commit

Permalink
cmd/atlas: fixed default lint.review check
Browse files Browse the repository at this point in the history
  • Loading branch information
giautm committed Oct 5, 2024
1 parent 0d53941 commit cbf58e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/atlas/internal/cmdapi/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func (f *schemaApplyFlags) check(env *Env) error {
return errors.New(`one of flag(s) "file" or "to" is required`)
case f.txMode != txModeNone && f.txMode != txModeFile:
return fmt.Errorf("unknown tx-mode %q", f.txMode)
case f.autoApprove && env.Lint.Review != "":
case f.autoApprove && env.LintReview() != ReviewAlways:
return fmt.Errorf("auto-approve is not allowed when a lint policy is set to %q", env.Lint.Review)
case f.edit && f.devURL == "":
return errors.New("--edit requires a connection to the dev-database (provided by --dev-url)")
Expand Down

0 comments on commit cbf58e0

Please sign in to comment.