diff --git a/CHANGELOG.md b/CHANGELOG.md index 79aacc3c1c5..e071ec93eb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,2 @@ - Fix blocking functions in the emulator when using multiple codebases (#6504). +- Add force flag call-out for bypassing prompts (#6506). diff --git a/src/commands/deploy.ts b/src/commands/deploy.ts index c88df3058b4..ca9cfe3e083 100644 --- a/src/commands/deploy.ts +++ b/src/commands/deploy.ts @@ -46,7 +46,7 @@ export const TARGET_PERMISSIONS: Record<(typeof VALID_DEPLOY_TARGETS)[number], s export const command = new Command("deploy") .description("deploy code and assets to your Firebase project") .withForce( - "delete Cloud Functions missing from the current working directory without confirmation" + "delete Cloud Functions missing from the current working directory and bypass interactive prompts" ) .option("-p, --public ", "override the Hosting public directory specified in firebase.json") .option("-m, --message ", "an optional message describing this deploy")