From 0db59b391715b806fcc80e669ef912a880627c17 Mon Sep 17 00:00:00 2001 From: Vlad Frangu Date: Mon, 20 Oct 2025 10:59:13 +0300 Subject: [PATCH] fix: alias `-f` for `--force` in `apify push` --- src/commands/actors/push.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/commands/actors/push.ts b/src/commands/actors/push.ts index f0c2fc781..298c437e3 100644 --- a/src/commands/actors/push.ts +++ b/src/commands/actors/push.ts @@ -71,6 +71,7 @@ export class ActorsPushCommand extends ApifyCommand { required: false, }), force: Flags.boolean({ + char: 'f', description: 'Push an Actor even when the local files are older than the Actor on the platform.', default: false, required: false,