From 35d1166868f4a1c67d9d6d1b8faeaf9ceb3032ae Mon Sep 17 00:00:00 2001 From: Gavin D'souza Date: Wed, 25 Mar 2020 13:07:55 +0530 Subject: [PATCH] style: updated message log for app wise deps setup --- bench/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bench/utils.py b/bench/utils.py index 9cc1ee37..98734ed5 100755 --- a/bench/utils.py +++ b/bench/utils.py @@ -591,7 +591,7 @@ def update_yarn_packages(bench_path='.'): for app in os.listdir(apps_dir): app_path = os.path.join(apps_dir, app) if os.path.exists(os.path.join(app_path, 'package.json')): - print('\nRunning "yarn install" for {0}'.format(app)) + print('\n{0}Installing node dependencies for {1}{2}'.format(color.yellow, app, color.nc)) exec_cmd('yarn install', cwd=app_path)