Skip to content

Commit

Permalink
Fix error message in ocm-invite-forward
Browse files Browse the repository at this point in the history
  • Loading branch information
ishank011 committed Jul 1, 2021
1 parent c80c16a commit 5571cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/reva/ocm-invite-forward.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func ocmInviteForwardCommand() *command {
return errors.New("token cannot be empty: use -token flag\n" + cmd.Usage())
}
if *idp == "" {
return errors.New("Provider domain cannot be empty: use -provider flag\n" + cmd.Usage())
return errors.New("Provider domain cannot be empty: use -idp flag\n" + cmd.Usage())
}

ctx := getAuthContext()
Expand Down

0 comments on commit 5571cac

Please sign in to comment.