Codebase list golang-github-gobuffalo-packr / e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream v2 / packr2 / cmd / build.go
e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream

Tree @e77c2a01-53cf-4f01-8323-b8eab79363aa/upstream (Download .tar.gz)

build.go @e77c2a01-53cf-4f01-8323-b8eab79363aa/upstreamraw · history · blame

package cmd

import (
	"fmt"

	"github.com/gobuffalo/packr/v2/jam"
	"github.com/spf13/cobra"
)

var buildCmd = &cobra.Command{
	Use:                "build",
	Short:              "Wraps the go build command with packr",
	DisableFlagParsing: true,
	RunE: func(cmd *cobra.Command, args []string) error {
		cargs := parseArgs(args)
		if globalOptions.Verbose {
			fmt.Println(dont)
		}
		if err := jam.Pack(globalOptions.PackOptions); err != nil {
			return err
		}
		return goCmd("build", cargs...)
	},
}

func init() {
	rootCmd.AddCommand(buildCmd)
}