From f4700957fa810b3d23097129029dcc3758cb92a7 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Thu, 10 Aug 2017 14:16:34 +0530 Subject: [PATCH] [fix] dont watch in CI --- frappe/commands/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py index 219cdc9898..139529a08f 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -18,8 +18,8 @@ def build(make_copy=False, verbose=False): @click.command('watch') def watch(): "Watch and concatenate JS and CSS files as and when they change" - if os.environ.get('CI'): - return + # if os.environ.get('CI'): + # return import frappe.build frappe.init('') frappe.build.watch(True)