Fix edge case issue when there's no cache location.

This commit is contained in:
Chris Eppstein 2011-07-02 18:05:02 -07:00
parent 349e29f7ca
commit ab270c1adb

View File

@ -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