"fmt"
"os"
"path/filepath"
+ "regexp"
"github.com/gohugoio/hugo/modules"
"github.com/spf13/cobra"
return verifyCmd
}
+var moduleNotFoundRe = regexp.MustCompile("module.*not found")
+
func (c *modCmd) newCleanCmd() *cobra.Command {
var pattern string
+ var all bool
cmd := &cobra.Command{
Use: "clean",
Short: "Delete the Hugo Module cache for the current project.",
`,
RunE: func(cmd *cobra.Command, args []string) error {
+ if all {
+ com, err := c.initConfig(false)
+
+ if err != nil && !moduleNotFoundRe.MatchString(err.Error()) {
+ return err
+ }
+
+ _, err = com.hugo().FileCaches.ModulesCache().Prune(true)
+ return err
+ }
return c.withModsClient(true, func(c *modules.Client) error {
return c.Clean(pattern)
})
}
cmd.Flags().StringVarP(&pattern, "pattern", "", "", `pattern matching module paths to clean (all if not set), e.g. "**hugo*"`)
+ cmd.Flags().BoolVarP(&all, "all", "", false, "clean entire module cache")
return cmd
}