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.
2 parents a351609 + 21cc3f4 commit 334d681Copy full SHA for 334d681
main.go
@@ -87,7 +87,10 @@ query apps($name: String!, $allApps: Boolean!) {
87
fmt.Printf("%v exists\n", app.Name)
88
os.Exit(0)
89
}
90
- fmt.Printf("%v does not exist\n", name)
+ fmt.Printf("%v not found. Possible causes:\n", name)
91
+ fmt.Printf("- You may not have been granted access to this app.")
92
+ fmt.Printf("- The app may not exist (or may not have been deployed yet).")
93
+ fmt.Printf("- The app is broken and could not be started.")
94
os.Exit(1)
95
96
0 commit comments