Skip to content

Commit 1c9eaa1

Browse files
miltalexteo
authored andcommitted
[coconut] New environments are public by default
1 parent a84dafd commit 1c9eaa1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coconut/cmd/environment_create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func init() {
6262
environmentCreateCmd.Flags().StringP("workflow-template", "w", "", "workflow to be loaded in the new environment")
6363
environmentCreateCmd.MarkFlagRequired("workflow-template")
6464
environmentCreateCmd.Flags().BoolP("auto", "a", false, "create an autorun environment")
65-
environmentCreateCmd.Flags().BoolP("public", "p", false, "create a public environment")
65+
environmentCreateCmd.Flags().BoolP("public", "p", true, "control public rights of the environment")
6666

6767
environmentCreateCmd.Flags().StringP("extra-vars", "e", "", "values passed using key=value CSV or JSON syntax, interpreted as strings `key1=val1,key2=val2` or `{\"key1\": \"value1\", \"key2\": \"value2\"}`")
6868
}

0 commit comments

Comments
 (0)