Skip to content

Commit

Permalink
Fix a bug in FSSM for ruby 1.9. Thanks Chris Eppstein
Browse files Browse the repository at this point in the history
  • Loading branch information
ttilley committed Dec 13, 2009
1 parent 468368d commit 504313c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fssm/state.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def snapshot(base)
end

def add_glob(base, glob)
FSSM::Pathname.glob(base.join(glob)).each do |fn|
FSSM::Pathname.glob(base.join(glob).to_s).each do |fn|
@cache.set(fn)
end
end
Expand Down

0 comments on commit 504313c

Please sign in to comment.