From 288c997322129baae10d28079aa97cee8675d486 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Tue, 22 Jul 2014 14:04:52 -0600 Subject: [PATCH] Build css if source is newer Previously, build/ol.css wasn't getting rebuilt on updates to css/ol.css. --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index ac2e383607..b8eb25358c 100755 --- a/build.py +++ b/build.py @@ -136,7 +136,7 @@ virtual('check', 'lint', 'jshint', 'test') virtual('todo', 'fixme') -@target('build/ol.css') +@target('build/ol.css', 'css/ol.css') def build_ol_css(t): t.output('%(CLEANCSS)s', 'css/ol.css')