From d753e900dadcf28c079bf96a3728665bf08b0a6d Mon Sep 17 00:00:00 2001 From: Nick Sergeant Date: Tue, 18 Sep 2012 16:02:02 -0400 Subject: [PATCH] Compiling CSS. --- fabfile.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 5fca6cd..ec3ddb1 100644 --- a/fabfile.py +++ b/fabfile.py @@ -23,7 +23,10 @@ def dep(): local('scss -t compressed media/css/blog-themes/pro-adams/style.scss media/css/blog-themes/pro-adams/style.css') local('media/css/compile-css.sh') - local('git commit -am "Compiling CSS."') + try: + local('git commit -am "Compiling CSS."') + except: + pass _display_message('Collect static') ################