Skip to content

Commit 57f3410

Browse files
authored
cli: remove confirm prompt when starting a workspace (#3580)
1 parent 3fdae47 commit 57f3410

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

cli/start.go

-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,6 @@ func start() *cobra.Command {
1717
Short: "Build a workspace with the start state",
1818
Args: cobra.ExactArgs(1),
1919
RunE: func(cmd *cobra.Command, args []string) error {
20-
_, err := cliui.Prompt(cmd, cliui.PromptOptions{
21-
Text: "Confirm start workspace?",
22-
IsConfirm: true,
23-
})
24-
if err != nil {
25-
return err
26-
}
27-
2820
client, err := createClient(cmd)
2921
if err != nil {
3022
return err

0 commit comments

Comments
 (0)