Skip to content

Commit

Permalink
fix: Show step titles while running operations
Browse files Browse the repository at this point in the history
  • Loading branch information
gavindsouza committed May 10, 2021
1 parent 4cadf2c commit 096c2cf
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bench/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,11 @@ def update(pull=False, apps=None, patch=False, build=False, requirements=False,
apps = [app.strip() for app in re.split(",| ", apps) if app]

if pull:
print('Updating apps source...')
pull_apps(apps=apps, bench_path=bench_path, reset=reset)

if requirements:
print('Setting up requirements...')
update_requirements(bench_path=bench_path)
update_node_packages(bench_path=bench_path)

Expand All @@ -232,6 +234,7 @@ def update(pull=False, apps=None, patch=False, build=False, requirements=False,
patch_sites(bench_path=bench_path)

if build:
print('Building assets...')
build_assets(bench_path=bench_path)

if version_upgrade[0] or (not version_upgrade[0] and force):
Expand Down

0 comments on commit 096c2cf

Please sign in to comment.