From 8dd5fc0f50b68b30942aaed33df5922b61dd36ee Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Thu, 26 Apr 2018 10:32:01 +1000 Subject: [PATCH] Whoops, use a path relative to the project dir to load the theme module into Stylus --- lemoncurry/settings/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemoncurry/settings/base.py b/lemoncurry/settings/base.py index 1646e09..4f7c4eb 100644 --- a/lemoncurry/settings/base.py +++ b/lemoncurry/settings/base.py @@ -216,7 +216,7 @@ STATICFILES_FINDERS = ( ) COMPRESS_PRECOMPILERS = ( - ('text/stylus', 'npx stylus -u ./static/lemoncurry/css/theme'), + ('text/stylus', 'npx stylus -u ./lemoncurry/static/lemoncurry/css/theme'), ) MEDIA_URL = STATIC_URL + 'media/'