Skip to content

Commit

Permalink
refactor: changed resolve to resolve-deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Aradhya-Tripathi authored and saxenabhishek committed Feb 28, 2022
1 parent 4feb076 commit 1cd9149
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bench/commands/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def drop(path):
"--init-bench", is_flag=True, default=False, help="Initialize Bench if not in one"
)
@click.option(
"--resolve/--no-resolve",
"--resolve-deps",
is_flag=True,
default=False,
help="Resolve dependencies before installing app",
Expand All @@ -146,7 +146,7 @@ def get_app(
overwrite=False,
skip_assets=False,
init_bench=False,
resolve=False,
resolve_deps=False,
):
"clone an app from the internet and set it up in your bench"
from bench.app import get_app
Expand All @@ -157,7 +157,7 @@ def get_app(
skip_assets=skip_assets,
overwrite=overwrite,
init_bench=init_bench,
resolve=resolve,
resolve_deps=resolve_deps,
)

@click.command("new-app", help="Create a new Frappe application under apps folder")
Expand Down

0 comments on commit 1cd9149

Please sign in to comment.