Removed optional tags with one tag, !skippkger

This commit is contained in:
Chris 2020-03-24 14:14:21 -04:00 committed by GitHub
parent 331c57067b
commit 3c88c54d65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 7 deletions

View File

@ -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")