We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d830adf commit f44c2a6Copy full SHA for f44c2a6
1 file changed
client/cmd/apps.go
@@ -20,6 +20,9 @@ import (
20
// AppCreate creates an app.
21
func AppCreate(id string, buildpack string, remote string, noRemote bool) error {
22
c, err := client.New()
23
+ if err != nil {
24
+ return err
25
+ }
26
27
fmt.Print("Creating Application... ")
28
quit := progress()
0 commit comments