Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var BuildCmd = &cobra.Command{ Use: "build ", Short: "Run a build and post it to hyphen", Long: ` The build command runs a build and uploads it to hyphen without deploying. Usage: hyphen build [flags] Examples: hyphen build Use 'hyphen build --help' for more information about available flags. `, Args: cobra.RangeArgs(0, 1), PersistentPreRunE: func(cmd *cobra.Command, args []string) error { return user.ErrorIfNotAuthenticated() }, RunE: func(cmd *cobra.Command, args []string) error { printer = cprint.NewCPrinter(flags.VerboseFlag) service := build.NewService() build, err := service.RunBuild(cmd, printer, "", flags.VerboseFlag, flags.DockerfileFlag) if err != nil { return err } url := hyphenapp.ApplicationBuildLink(build.Organization.ID, build.Project.ID, build.App.ID, build.Id) printer.Info("Build successful: " + url) return nil }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.