1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-31 01:53:50 +02:00

switched to double quotes

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Torsten Curdt 2023-11-04 00:42:24 +01:00 committed by Carlos Alexandro Becker
parent 49f39736ef
commit bd149aca5d

View File

@ -236,7 +236,7 @@ Previous error:
%w`, tmp, strings.Join(files, "\n "), err)
}
if isBuildxContextError(err.Error()) {
return fmt.Errorf(`docker buildx not set to default context\nPlease switch with 'docker context use default'\nLearn more at https://goreleaser.com/errors/docker-build`)
return fmt.Errorf("docker buildx not set to default context\nPlease switch with 'docker context use default'\nLearn more at https://goreleaser.com/errors/docker-build")
}
return err
}