1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-10 03:47:03 +02:00
goreleaser/pipeline/cleandist/dist.go

47 lines
977 B
Go
Raw Normal View History

2017-07-05 03:53:50 +02:00
// Package cleandist provides checks to make sure the dist folder is always
// empty.
package cleandist
import (
"fmt"
2017-07-05 03:55:52 +02:00
"io/ioutil"
2017-07-05 03:53:50 +02:00
"os"
"github.com/apex/log"
"github.com/goreleaser/goreleaser/context"
)
// Pipe for cleandis
type Pipe struct{}
// Description of the pipe
func (Pipe) Description() string {
return "Checking ./dist"
}
// Run the pipe
func (Pipe) Run(ctx *context.Context) (err error) {
_, err = os.Stat(ctx.Config.Dist)
if os.IsNotExist(err) {
log.Debug("./dist doesn't exist, moving on")
return nil
}
if ctx.RmDist {
2017-08-20 22:46:30 +02:00
log.Info("--rm-dist is set, removing ./dist")
2017-07-05 03:53:50 +02:00
return os.RemoveAll(ctx.Config.Dist)
}
files, err := ioutil.ReadDir(ctx.Config.Dist)
if err != nil {
return
}
if len(files) > 0 {
log.WithField("files", len(files)).Debug("./dist is not empty")
return fmt.Errorf(
"%s is not empty, remove it before running goreleaser or use the --rm-dist flag",
ctx.Config.Dist,
)
}
log.Debug("./dist is empty")
return
}