Skip to content

Commit

Permalink
aws: fix unexpected error when missing aws credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Oct 3, 2024
1 parent 11d96c9 commit 08074b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/project/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ func (proj *Project) LoadHome() error {
}
err := match.Init(proj.app.Name, proj.app.Stage, args.(map[string]interface{}))
if err != nil {
return err
return util.NewReadableError(err, err.Error())
}
env, err := match.Env()
if err != nil {
Expand Down

0 comments on commit 08074b4

Please sign in to comment.