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 apptrust/commands/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ func ServerDetailsByFlags(ctx *components.Context) (*coreConfig.ServerDetails, e
return nil, err
}
if serverDetails.Url == "" {
return nil, fmt.Errorf("platform URL is mandatory for evidence commands")
return nil, fmt.Errorf("platform URL is mandatory for AppTrust commands")
}
if serverDetails.GetUser() != "" && serverDetails.GetPassword() != "" {
return nil, fmt.Errorf("evidence service does not support basic authentication")
return nil, fmt.Errorf("AppTrust service does not support basic authentication")
}

return serverDetails, nil
Expand Down