mirror of https://github.com/liamg/aminal.git
36 lines
609 B
Go
36 lines
609 B
Go
package cmd
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/gobuffalo/packr/v2/jam/store"
|
|
"github.com/pkg/errors"
|
|
"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 clean(args...)
|
|
},
|
|
}
|
|
|
|
func clean(args ...string) error {
|
|
pwd, err := os.Getwd()
|
|
if err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
args = append(args, pwd)
|
|
for _, root := range args {
|
|
if err := store.Clean(root); err != nil {
|
|
return errors.WithStack(err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(cleanCmd)
|
|
}
|