Skip to content

Commit ea58114

Browse files
authored
Add force flag call-out for bypassing prompts (#6506)
* add min instances callout * add changelog entry * update to skip all prompts
1 parent 55d3584 commit ea58114

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
- Fix blocking functions in the emulator when using multiple codebases (#6504).
2+
- Add force flag call-out for bypassing prompts (#6506).

src/commands/deploy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const TARGET_PERMISSIONS: Record<(typeof VALID_DEPLOY_TARGETS)[number], s
4646
export const command = new Command("deploy")
4747
.description("deploy code and assets to your Firebase project")
4848
.withForce(
49-
"delete Cloud Functions missing from the current working directory without confirmation"
49+
"delete Cloud Functions missing from the current working directory and bypass interactive prompts"
5050
)
5151
.option("-p, --public <path>", "override the Hosting public directory specified in firebase.json")
5252
.option("-m, --message <message>", "an optional message describing this deploy")

0 commit comments

Comments
 (0)