Codebase list golang-github-gobuffalo-packr / 32f9138 v2 / packr2 / cmd / clean.go
32f9138

Tree @32f9138 (Download .tar.gz)

clean.go @32f9138raw · history · blame

package cmd

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

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

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