Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,10 @@ query apps($name: String!, $allApps: Boolean!) {
fmt.Printf("%v exists\n", app.Name)
os.Exit(0)
}
fmt.Printf("%v does not exist\n", name)
fmt.Printf("%v not found. Possible causes:\n", name)
fmt.Printf("- You may not have been granted access to this app.")
fmt.Printf("- The app may not exist (or may not have been deployed yet).")
fmt.Printf("- The app is broken and could not be started.")
os.Exit(1)
}

Expand Down