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() }, Run: func(cmd *cobra.Command, args []string) { printer = cprint.NewCPrinter(flags.VerboseFlag) service := build.NewService() build, err := service.RunBuild(printer, "", flags.VerboseFlag) if err != nil { printer.Error(cmd, err) return } url := hyphenapp.ApplicationBuildLink(build.Organization.ID, build.Project.ID, build.App.ID, build.Id) printer.Info("Build successful: " + url) }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.