From b488c349e82e812ea1ecfd8e09f148ae602921a1 Mon Sep 17 00:00:00 2001 From: kevgliss Date: Tue, 11 Aug 2015 14:53:28 -0700 Subject: [PATCH] Look for compiled static files, to see if they need to be created --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 6b4282e8..8afa80ed 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ class SmartInstall(install): `build_static` which is required for JavaScript assets and other things. """ def _needs_static(self): - return not os.path.exists(os.path.join(ROOT, 'lemur-package.json')) + return not os.path.exists(os.path.join(ROOT, 'lemur/static/dist')) def run(self): if self._needs_static():