diff --git a/plugin.go b/plugin.go index 4c352df..68f3b7f 100644 --- a/plugin.go +++ b/plugin.go @@ -303,7 +303,7 @@ func getCredentials(url, username, password string, k keyring.Keyring) (keyring. return ci, false, err } else if errors.Is(err, keyring.ErrNotFound) { cli.Println("Keyring was unlocked or created successfully: publish credentials were not found") - return ci, false, errors.New("execute 'plasmactl login' to set 'https://repositories.skilld.cloud' credentials to keyring") + return ci, false, errors.New("execute 'plasmactl login --url=https://repositories.skilld.cloud' to add credentials to keyring") } else if !errors.Is(err, keyring.ErrNotFound) { log.Debug("%s", err) return ci, false, errors.New("the keyring is malformed or wrong passphrase provided")