1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-19 20:57:53 +02:00

fix: lint warnings

added nosec for a mkdir 0755
This commit is contained in:
Carlos Alexandro Becker 2017-12-10 11:45:59 -02:00 committed by Carlos Alexandro Becker
parent 07c04b33f8
commit 36015b4724

View File

@ -49,5 +49,6 @@ func (Pipe) Run(ctx *context.Context) (err error) {
}
func mkdir(ctx *context.Context) error {
// #nosec
return os.MkdirAll(ctx.Config.Dist, 0755)
}