Skip to content

Commit 90e4b9d

Browse files
committed
Remove leftovers
1 parent ba59b6b commit 90e4b9d

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

templates/cli/lib/commands/push.js.twig

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1335,50 +1335,38 @@ const pushMessagingTopic = async ({ returnOnZero } = { returnOnZero: false }) =>
13351335
const push = new Command("push")
13361336
.alias('deploy')
13371337
.description(commandDescriptions['push'])
1338-
.option(`-a, --all`, `Flag to push all resources`)
1339-
.option(`-y, --yes`, `Flag to confirm all warnings`)
13401338
.action(actionRunner(pushResources));
13411339

13421340
push
13431341
.command("function")
13441342
.alias("functions")
13451343
.description("Push functions in the current directory.")
13461344
.option(`-f, --functionId <functionId>`, `Function ID`)
1347-
.option(`-a, --all`, `Flag to push all functions`)
1348-
.option(`-y, --yes`, `Flag to confirm all warnings`)
13491345
.option(`-A, --async`, `Don't wait for functions deployments status`)
13501346
.action(actionRunner(pushFunction));
13511347

13521348
push
13531349
.command("collection")
13541350
.alias("collections")
13551351
.description("Push collections in the current project.")
1356-
.option(`-a, --all`, `Flag to push all collections`)
1357-
.option(`-a, --yes`, `Flag to confirm all warnings`)
13581352
.action(actionRunner(pushCollection));
13591353

13601354
push
13611355
.command("bucket")
13621356
.alias("buckets")
13631357
.description("Push buckets in the current project.")
1364-
.option(`-a, --all`, `Flag to push all buckets`)
1365-
.option(`-y, --yes`, `Flag to confirm all warnings`)
13661358
.action(actionRunner(pushBucket));
13671359

13681360
push
13691361
.command("team")
13701362
.alias("teams")
13711363
.description("Push teams in the current project.")
1372-
.option(`-a, --all`, `Flag to push all teams`)
1373-
.option(`-y, --yes`, `Flag to confirm all warnings`)
13741364
.action(actionRunner(pushTeam));
13751365

13761366
push
13771367
.command("topic")
13781368
.alias("topics")
13791369
.description("Push messaging topics in the current project.")
1380-
.option(`-a, --all`, `Flag to deploy all topics`)
1381-
.option(`-y, --yes`, `Flag to confirm all warnings`)
13821370
.action(actionRunner(pushMessagingTopic));
13831371

13841372
module.exports = {

0 commit comments

Comments
 (0)