mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Typo in merge
This commit is contained in:
parent
51a494b343
commit
b4aa33fe22
1 changed files with 2 additions and 2 deletions
|
@ -25,11 +25,11 @@ module Middleman
|
|||
# parsing config.rb
|
||||
def initialize
|
||||
self.files.changed DataStore.matcher do |file|
|
||||
self.data.touch_file(file) if file.start_with?("#{config[data_dir]}/")
|
||||
self.data.touch_file(file) if file.start_with?("#{config[:data_dir]}/")
|
||||
end
|
||||
|
||||
self.files.deleted DataStore.matcher do |file|
|
||||
self.data.remove_file(file) if file.start_with?("#{config[data_dir]}/")
|
||||
self.data.remove_file(file) if file.start_with?("#{config[:data_dir]}/")
|
||||
end
|
||||
|
||||
super
|
||||
|
|
Loading…
Reference in a new issue