From 00d6a0a27105ac181dd2824ec166a015d23a7280 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Negr=C3=B3n?= Date: Wed, 29 Jan 2025 16:04:33 -0400 Subject: [PATCH] fix flag value --- packages/cli/src/oclif/commands/push.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/cli/src/oclif/commands/push.js b/packages/cli/src/oclif/commands/push.js index e6432ca44..d0f1fbf5f 100644 --- a/packages/cli/src/oclif/commands/push.js +++ b/packages/cli/src/oclif/commands/push.js @@ -1,10 +1,10 @@ const ZapierBaseCommand = require('../ZapierBaseCommand'); +const { BUILD_PATH, SOURCE_PATH } = require('../../constants'); const { Flags } = require('@oclif/core'); const BuildCommand = require('./build'); const { buildAndOrUpload } = require('../../utils/build'); -const { BUILD_PATH, SOURCE_PATH } = require('../../constants'); class PushCommand extends ZapierBaseCommand { async perform() { @@ -25,7 +25,7 @@ class PushCommand extends ZapierBaseCommand { PushCommand.flags = { ...BuildCommand.flags, - overwritePartnerChanges: Flags.boolean({ + 'overwrite-partner-changes': Flags.boolean({ description: '(Internal Use Only) Allows Zapier Staff to push changes to integrations in certain situations.', hidden: true,