use Replace instead of ReplaceAll

This commit is contained in:
Brad Rydzewski 2021-08-02 21:42:22 -04:00 committed by surtur
parent f8250646cf
commit 3eb0d9c3ac
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D

@ -123,7 +123,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")
}