From b3842d9b305da87d689bea379049beee3dd1cbbb Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Mon, 4 May 2020 17:44:46 +0530 Subject: [PATCH] fix: handle app not found under GH frappe erpnext orgs --- bench/app.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bench/app.py b/bench/app.py index d57fb9d3..7115ee32 100755 --- a/bench/app.py +++ b/bench/app.py @@ -111,6 +111,9 @@ def get_app(git_url, branch=None, bench_path='.', skip_assets=False, verbose=Fal if git_url == data['name']: git_url = 'https://github.com/{org}/{app}'.format(org=org, app=git_url) break + else: + bench.utils.log("App {app} not found".format(app=git_url), level=2) + sys.exit(1) # Gets repo name from URL repo_name = git_url.rsplit('/', 1)[1].rsplit('.', 1)[0] @@ -407,7 +410,7 @@ def switch_branch(branch, apps=None, bench_path='.', upgrade=False, check_upgrad if version_upgrade[0] and upgrade: update_requirements() update_node_packages() - reload_module(utils) + reload_module(bench.utils) backup_all_sites() patch_sites() build_assets()