Skip to content

Commit 424feab

Browse files
committed
hmm
1 parent 46c06df commit 424feab

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cli/restart.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func (r *RootCmd) restart() *clibase.Cmd {
3939
workspace: workspace,
4040
action: WorkspaceRestart,
4141
parameterFlags: parameterFlags,
42-
promptRichParameters: true,
42+
promptRichParameters: false,
4343
})
4444
if err != nil {
4545
return err
@@ -73,7 +73,7 @@ func (r *RootCmd) restart() *clibase.Cmd {
7373
workspace: workspace,
7474
parameterFlags: parameterFlags,
7575
action: WorkspaceUpdate,
76-
promptRichParameters: true,
76+
promptRichParameters: false,
7777
})
7878
if err != nil {
7979
return xerrors.Errorf("start workspace with active template version: %w", err)

cli/start.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func (r *RootCmd) start() *clibase.Cmd {
3535
workspace: workspace,
3636
parameterFlags: parameterFlags,
3737
action: WorkspaceStart,
38-
promptRichParameters: true,
38+
promptRichParameters: false,
3939
})
4040
// It's possible for a workspace build to fail due to the template requiring starting
4141
// workspaces with the active version.
@@ -44,7 +44,7 @@ func (r *RootCmd) start() *clibase.Cmd {
4444
workspace: workspace,
4545
parameterFlags: parameterFlags,
4646
action: WorkspaceUpdate,
47-
promptRichParameters: true,
47+
promptRichParameters: false,
4848
})
4949
if err != nil {
5050
return xerrors.Errorf("start workspace with active template version: %w", err)

0 commit comments

Comments
 (0)