Codebase list golang-github-gobuffalo-packr / d6ee7934-346a-42df-8235-d0ecabb90628/upstream packr / cmd / clean.go
d6ee7934-346a-42df-8235-d0ecabb90628/upstream

Tree @d6ee7934-346a-42df-8235-d0ecabb90628/upstream (Download .tar.gz)

clean.go @d6ee7934-346a-42df-8235-d0ecabb90628/upstreamraw · history · blame

package cmd

import (
	"github.com/gobuffalo/packr/builder"
	"github.com/spf13/cobra"
)

var cleanCmd = &cobra.Command{
	Use:   "clean",
	Short: "removes any *-packr.go files",
	Run: func(cmd *cobra.Command, args []string) {
		builder.Clean(input)
	},
}

func init() {
	rootCmd.AddCommand(cleanCmd)
}