Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🧹 Use docs URLs that avoid a redirect #3355

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ cnquery shell aws
> aws.ec2.instances{*}
```

[:books: To learn more, read the cnquery docs.](https://mondoo.com/docs/cnquery/home)
[:books: To learn more, read the cnquery docs.](https://mondoo.com/docs/cnquery/home/)

## Installation

Expand Down Expand Up @@ -196,7 +196,7 @@ There are so many things cnquery can do! Gather information about your infrastru

Explore:

- [cnquery docs](https://mondoo.com/docs/cnquery/home)
- [cnquery docs](https://mondoo.com/docs/cnquery/home/)
- [Query packs](https://github.com/mondoohq/cnquery-packs)
- [MQL introduction](https://mondoohq.github.io/mql-intro/index.html)
- [MQL language reference](https://mondoo.com/docs/mql/resources/)
Expand Down
2 changes: 1 addition & 1 deletion apps/cnquery/cmd/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func (s Status) RenderCliStatus() {
log.Info().Msg(theme.DefaultTheme.Success("client authenticated successfully"))
} else if s.Client.PingPongError == nil {
log.Error().Err(s.Client.PingPongError).
Msgf("The Mondoo Platform credentials provided at %s didn't successfully authenticate with Mondoo Platform. Please re-authenticate with Mondoo Platform. To learn how, read https://mondoo.com/docs/cnspec/cnspec-adv-install/registration.",
Msgf("The Mondoo Platform credentials provided at %s didn't successfully authenticate with Mondoo Platform. Please re-authenticate with Mondoo Platform. To learn how, read https://mondoo.com/docs/cnspec/cnspec-adv-install/registration/.",
viper.ConfigFileUsed())
}

Expand Down
2 changes: 1 addition & 1 deletion explorer/scan/local_scanner.go
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ func (s *LocalScanner) Run(ctx context.Context, job *Job) (*explorer.ReportColle
"The Mondoo Platform credentials provided at "+viper.ConfigFileUsed()+
" didn't successfully authenticate with Mondoo Platform. "+
"Please re-authenticate with Mondoo Platform. "+
"To learn how, read https://mondoo.com/docs/cnspec/cnspec-adv-install/registration.")
"To learn how, read https://mondoo.com/docs/cnspec/cnspec-adv-install/registration/.")
}
return nil, err
}
Expand Down
Loading