Skip to content

Commit

Permalink
Calm-39485 fix typo (#286)
Browse files Browse the repository at this point in the history
Change of string text from "existing_markeplace_runbook" to
**existing_marketplace_runbook**

(cherry picked from commit ddfd8edee8e31b8cde76bf9250ff4e2ccad21949)
  • Loading branch information
GullapalliAkhil authored and dwivediprab committed Mar 15, 2024
1 parent 744ef74 commit 9f729e3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions calm/dsl/cli/marketplace_runbook_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def _reject_marketplace_runbook(name, version):
help="Preserve endpoints publishing runbooks to marketplace",
)
@click.option(
"--existing_markeplace_runbook",
"--existing_marketplace_runbook",
"-e",
is_flag=True,
default=False,
Expand Down Expand Up @@ -340,7 +340,7 @@ def publish_runbook(
description,
with_secrets,
with_endpoints,
existing_markeplace_runbook,
existing_marketplace_runbook,
publish_to_marketplace,
projects=[],
category=None,
Expand All @@ -354,7 +354,7 @@ def publish_runbook(
# Using runbook name as the marketplace runbook name if no name provided
name = runbook_name

if not existing_markeplace_runbook:
if not existing_marketplace_runbook:
publish_runbook_as_new_marketplace_item(
runbook_name=runbook_name,
marketplace_item_name=name,
Expand Down

0 comments on commit 9f729e3

Please sign in to comment.