mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
ff0fdf3520
Signed-off-by: Carlos Panato <ctadeu@gmail.com>
54 lines
1.1 KiB
Go
54 lines
1.1 KiB
Go
// Package dist provides checks to make sure the dist folder is always
|
|
// empty.
|
|
package dist
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/apex/log"
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
|
)
|
|
|
|
// Pipe for dist.
|
|
type Pipe struct{}
|
|
|
|
func (Pipe) String() string {
|
|
return "checking distribution directory"
|
|
}
|
|
|
|
// Run the pipe.
|
|
func (Pipe) Run(ctx *context.Context) (err error) {
|
|
_, err = os.Stat(ctx.Config.Dist)
|
|
if os.IsNotExist(err) {
|
|
log.Debugf("%s doesn't exist, creating empty folder", ctx.Config.Dist)
|
|
return mkdir(ctx)
|
|
}
|
|
if ctx.RmDist {
|
|
log.Info("--rm-dist is set, cleaning it up")
|
|
err = os.RemoveAll(ctx.Config.Dist)
|
|
if err == nil {
|
|
err = mkdir(ctx)
|
|
}
|
|
return err
|
|
}
|
|
files, err := os.ReadDir(ctx.Config.Dist)
|
|
if err != nil {
|
|
return
|
|
}
|
|
if len(files) != 0 {
|
|
log.Debugf("there are %d files on %s", len(files), ctx.Config.Dist)
|
|
return fmt.Errorf(
|
|
"%s is not empty, remove it before running goreleaser or use the --rm-dist flag",
|
|
ctx.Config.Dist,
|
|
)
|
|
}
|
|
log.Debugf("%s is empty", ctx.Config.Dist)
|
|
return mkdir(ctx)
|
|
}
|
|
|
|
func mkdir(ctx *context.Context) error {
|
|
// #nosec
|
|
return os.MkdirAll(ctx.Config.Dist, 0o755)
|
|
}
|