Skip to content

Commit

Permalink
docs: fix links to AWS credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Jun 8, 2020
1 parent 3861b8e commit 422152d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/up/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func main() {

switch {
case util.IsNoCredentials(err):
util.Fatal(errors.New("Cannot find credentials, visit https://up.docs.apex.sh/#aws_credentials for help."))
util.Fatal(errors.New("Cannot find credentials, visit https://apex.sh/docs/up/credentials/ for help."))
default:
util.Fatal(err)
}
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/deploy/deploy.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ retry:
err := setup.Create()

if err == setup.ErrNoCredentials {
return errors.New("Cannot find credentials, visit https://up.docs.apex.sh/#aws_credentials for help.")
return errors.New("Cannot find credentials, visit https://apex.sh/docs/up/credentials/ for help.")
}

if err != nil {
Expand Down

0 comments on commit 422152d

Please sign in to comment.