Skip to content

Commit

Permalink
Merge pull request #17 from coherenceplatform/zz/0903-1
Browse files Browse the repository at this point in the history
var name, version
  • Loading branch information
zach-withcoherence authored Sep 3, 2024
2 parents ac13b53 + 6478cff commit ca1aa6b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/cocli/deployEnvironment.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ type EnvironmentDeploy struct {
ConfigureInfra bool `json:"configure_infra,omitempty"`
}

var deployCmd = &cobra.Command{
var deployEnvironmentCmd = &cobra.Command{
Use: "deploy <environment_id> <json_file_or_string>",
Short: "Deploy to a specific environment",
Long: "Deploy services to a specific Coherence environment using a JSON configuration.",
Expand Down
2 changes: 1 addition & 1 deletion cmd/cocli/environments.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var environmentCmd = &cobra.Command{
}

func init() {
environmentCmd.AddCommand(deployCmd)
environmentCmd.AddCommand(deployEnvironmentCmd)
environmentCmd.AddCommand(createEnvironmentCmd)
environmentCmd.AddCommand(editEnvironmentCmd)
environmentCmd.AddCommand(getEnvironmentCmd)
Expand Down
2 changes: 1 addition & 1 deletion cocli_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0
1.1.1
2 changes: 1 addition & 1 deletion pkg/cocli/cocli.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var prodConfig = &CocliConfig{
CoherenceDomain: "https://beta.withcoherence.com",
}

const cliVersion = "1.1.0"
const cliVersion = "1.1.1"

func GetCliConfig() CocliConfig {
if strings.ToLower(os.Getenv("COHERENCE_ENVIRONMENT")) == "review" {
Expand Down

0 comments on commit ca1aa6b

Please sign in to comment.