From 535e8cac5d50db5b2c605ec9bca1c0aba5fcf39c Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 22 May 2015 11:21:38 +1000 Subject: [PATCH] don't force caching when compiling --- lib/tasks/assets.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/assets.rake b/lib/tasks/assets.rake index d18e7ffabbd..c5542307e10 100644 --- a/lib/tasks/assets.rake +++ b/lib/tasks/assets.rake @@ -79,7 +79,7 @@ task 'assets:precompile:css' => 'environment' do if ActiveRecord::Base.connection.table_exists?(ColorScheme.table_name) puts "Compiling css for #{db}" [:desktop, :mobile, :desktop_rtl, :mobile_rtl].each do |target| - puts DiscourseStylesheets.compile(target, force: true) + puts DiscourseStylesheets.compile(target) end end end