From 3c88c54d65b03877afe439d6a73d51112bf5db2a Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 24 Mar 2020 14:14:21 -0400 Subject: [PATCH] Removed optional tags with one tag, !skippkger --- cmd/pkger/cmds/pack.go | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/cmd/pkger/cmds/pack.go b/cmd/pkger/cmds/pack.go index 51af2ec..5b5f226 100644 --- a/cmd/pkger/cmds/pack.go +++ b/cmd/pkger/cmds/pack.go @@ -30,7 +30,6 @@ const outName = "pkged.go" type packCmd struct { *flag.FlagSet out string - tags string help bool include slice subs []command @@ -54,7 +53,7 @@ func (e *packCmd) Exec(args []string) error { return err } - if err := Package(info, fp, decls, e.tags); err != nil { + if err := Package(info, fp, decls); err != nil { return err } @@ -105,7 +104,6 @@ func New() (*packCmd, error) { c.FlagSet = flag.NewFlagSet("pkger", flag.ExitOnError) c.BoolVar(&c.help, "h", false, "prints help information") c.StringVar(&c.out, "o", "", "output directory for pkged.go") - c.StringVar(&c.tags, "t", "", "conditional build tag(s) for pkged.go") c.Var(&c.include, "include", "packages the specified file or directory") c.Usage = func() { fmt.Fprintf(os.Stderr, "Usage:\n\n") @@ -125,7 +123,7 @@ func (e *packCmd) Flags() *flag.FlagSet { return e.FlagSet } -func Package(info here.Info, out string, decls parser.Decls, tags string) error { +func Package(info here.Info, out string, decls parser.Decls) error { c, err := here.Dir(filepath.Dir(out)) if err != nil { return err @@ -145,9 +143,7 @@ func Package(info here.Info, out string, decls parser.Decls, tags string) error defer f.Close() fmt.Fprintf(f, "// Code generated by pkger; DO NOT EDIT.\n\n") - if len(tags) > 0 { - fmt.Fprintf(f, "// +build %s\n\n", tags) - } + fmt.Fprintf(f, "// +build !skippkger\n\n") fmt.Fprintf(f, "package %s\n\n", c.Name) fmt.Fprintf(f, "import (\n\t\"github.com/markbates/pkger\"\n\t") fmt.Fprintf(f, "\"github.com/markbates/pkger/pkging/mem\"\n)\n\n")