From f632db0e9d8f93e4b5f17629ff50825499499dcb Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Thu, 24 May 2012 15:11:38 -0400 Subject: [PATCH] Use the coffee, sass, and yui-compressior binaries that are on the current path --- envs/common.py | 4 +++- envs/dev.py | 1 - 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/envs/common.py b/envs/common.py index e24e4dca6f..2af02bd0b0 100644 --- a/envs/common.py +++ b/envs/common.py @@ -312,7 +312,9 @@ STATICFILES_IGNORE_PATTERNS = ( "*.pyc" ) -PIPELINE_YUI_BINARY = '/usr/bin/yui-compressor' +PIPELINE_YUI_BINARY = 'yui-compressor' +PIPELINE_SASS_BINARY = 'sass' +PIPELINE_COFFEE_SCRIPT_BINARY = 'coffee' ################################### APPS ####################################### INSTALLED_APPS = ( diff --git a/envs/dev.py b/envs/dev.py index 3793330d08..9d65059447 100644 --- a/envs/dev.py +++ b/envs/dev.py @@ -84,5 +84,4 @@ FILE_UPLOAD_HANDLERS = ( ########################### PIPELINE ################################# -PIPELINE_COFFEE_SCRIPT_BINARY = 'coffee' PIPELINE_SASS_ARGUMENTS = '-r {proj_dir}/static/sass/bourbon/lib/bourbon.rb'.format(proj_dir=PROJECT_ROOT)