From ab270c1adb0e2f26711bf70c2f37eff62b6ccf23 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Sat, 2 Jul 2011 18:05:02 -0700 Subject: [PATCH] Fix edge case issue when there's no cache location. --- lib/compass/compiler.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compass/compiler.rb b/lib/compass/compiler.rb index a10aee99..76f59b89 100644 --- a/lib/compass/compiler.rb +++ b/lib/compass/compiler.rb @@ -84,7 +84,7 @@ module Compass def run if new_config? # Wipe out the cache and force compilation if the configuration has changed. - remove options[:cache_location] + remove options[:cache_location] if options[:cache_location] options[:force] = true end