We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89ae500 commit 47b69dfCopy full SHA for 47b69df
1 file changed
cmd/apps.go
@@ -139,6 +139,17 @@ var appsCreateCmd = &cobra.Command{
139
if php == "" {
140
php = output.ReadInput("PHP version (8.3/8.4/8.5)")
141
}
142
+ if repository == "" && !custom {
143
+ repository = output.ReadInput("Git repository SSH URL")
144
+ }
145
+ if branch == "" && !custom {
146
+ branch = output.ReadInput("Git branch")
147
148
+
149
+ if !custom && repository == "" {
150
+ output.Error("Repository is required")
151
+ return fmt.Errorf("repository is required")
152
153
154
body := map[string]interface{}{
155
"user": user,
0 commit comments