Skip to content

Commit

Permalink
Merge pull request guard#4 from ches/1.8-partials
Browse files Browse the repository at this point in the history
Fix partial exclusion for Ruby 1.8
  • Loading branch information
brendanjerwin committed Aug 23, 2011
2 parents 69232e5 + 73439d4 commit e0b49b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/guard/less.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run_on_change(paths)
def run(paths)
last_passed = false
paths.each do |file|
unless File.basename(file)[0] == "_"
unless File.basename(file)[0,1] == "_"
UI.info "lessc - #{file}\n"
last_passed = system("lessc #{file} --verbose")
end
Expand Down

0 comments on commit e0b49b0

Please sign in to comment.