use Replace instead of ReplaceAll

This commit is contained in:
Brad Rydzewski 2021-08-02 21:42:22 -04:00
parent b1d8698d1c
commit fbbeec5a2e
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ func (p Plugin) Exec() error {
raw, err := cmd.CombinedOutput()
if err != nil {
out := string(raw)
out = strings.ReplaceAll(out, "WARNING! Using --password via the CLI is insecure. Use --password-stdin.", "")
out = strings.Replace(out, "WARNING! Using --password via the CLI is insecure. Use --password-stdin.", "", -1)
fmt.Println(out)
return fmt.Errorf("Error authenticating: exit status 1")
}