Skip to content

Commit

Permalink
[cli] Fix type error (#11430)
Browse files Browse the repository at this point in the history
The changes between #11348 and
#11394 were incompatible, causing
this type error.
  • Loading branch information
onsclom committed Apr 12, 2024
1 parent 21bbbb6 commit e2370a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .changeset/gorgeous-tips-drop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
3 changes: 1 addition & 2 deletions packages/cli/src/commands/env/command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ export const envCommand: Command = {
name: 'force',
description: 'Force overwrites when a command would normally fail',
shorthand: null,
type: 'boolean',
type: Boolean,
deprecated: false,
multi: false,
},
],
examples: [],
Expand Down

0 comments on commit e2370a3

Please sign in to comment.