Skip to content

Commit

Permalink
fix flag value
Browse files Browse the repository at this point in the history
  • Loading branch information
rnegron committed Jan 29, 2025
1 parent f41e1a9 commit 00d6a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/oclif/commands/push.js
Original file line number Diff line number Diff line change
@@ -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() {
Expand All @@ -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,
Expand Down

0 comments on commit 00d6a0a

Please sign in to comment.