Codebase list golang-github-gobuffalo-packr / 8d51ee81-f5e8-468b-bdc0-7e36171ab215/upstream packr / cmd / clean.go
8d51ee81-f5e8-468b-bdc0-7e36171ab215/upstream

Tree @8d51ee81-f5e8-468b-bdc0-7e36171ab215/upstream (Download .tar.gz)

clean.go @8d51ee81-f5e8-468b-bdc0-7e36171ab215/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)
}