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.
gp timeout set
1 parent 21fca56 commit a4c4c57Copy full SHA for a4c4c57
components/gitpod-cli/cmd/timeout-set.go
@@ -25,7 +25,7 @@ var setTimeoutCmd = &cobra.Command{
25
26
Duration must be in the format of <n>m (minutes), <n>h (hours) and cannot be longer than 24 hours.
27
For example: 30m or 1h`,
28
- Example: `gitpod timeout set 1h`,
+ Example: fmt.Sprintf("%s %s set 1h", rootCmd.Use, timeoutCmd.Use),
29
RunE: func(cmd *cobra.Command, args []string) error {
30
ctx, cancel := context.WithTimeout(cmd.Context(), 5*time.Second)
31
defer cancel()
0 commit comments