1 Star 0 Fork 0

mayun / packr

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
root.go 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
Mark Bates 提交于 2018-04-09 12:56 . added verbose flag
package cmd
import (
"context"
"fmt"
"os"
"github.com/gobuffalo/packr/builder"
"github.com/spf13/cobra"
)
var input string
var compress bool
var verbose bool
var rootCmd = &cobra.Command{
Use: "packr",
Short: "compiles static files into Go files",
PersistentPreRunE: func(cmd *cobra.Command, args []string) error {
if !verbose {
for _, a := range args {
if a == "-v" {
verbose = true
break
}
}
}
if verbose {
builder.DebugLog = func(s string, a ...interface{}) {
os.Stdout.WriteString(fmt.Sprintf(s, a...))
}
}
return nil
},
RunE: func(cmd *cobra.Command, args []string) error {
b := builder.New(context.Background(), input)
b.Compress = compress
return b.Run()
},
}
func init() {
pwd, _ := os.Getwd()
rootCmd.Flags().StringVarP(&input, "input", "i", pwd, "path to scan for packr Boxes")
rootCmd.Flags().BoolVarP(&compress, "compress", "z", false, "compress box contents")
rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "print verbose logging information")
}
// Execute the commands
func Execute() {
if err := rootCmd.Execute(); err != nil {
os.Exit(-1)
}
}
1
https://gitee.com/mayun562/packr.git
git@gitee.com:mayun562/packr.git
mayun562
packr
packr
v1.11.1

搜索帮助