Skip to content
Merged
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 internal/cli/patrol.go
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ func PatrolAction(cCtx *cli.Context) error {

patrolService := patrol.New(gitlabService, slackService, gitService, osvService)

// Run the scan
// Do the patrol
if warn, err := patrolService.Patrol(
cCtx.StringSlice(groupsFlag),
cCtx.StringSlice(projectsFlag),
Expand All @@ -155,7 +155,7 @@ func PatrolAction(cCtx *cli.Context) error {
); err != nil {
return errors.Join(errors.New("failed to scan"), err)
} else if warn != nil {
return cli.Exit("Scan was partially successful, some errors occurred. Check the logs for more information.", 1)
return cli.Exit("Patrol was partially successful, some errors occurred. Check the logs for more information.", 1)
}

return nil
Expand Down
Loading