Skip to content
This repository has been archived by the owner on Oct 26, 2018. It is now read-only.

Commit

Permalink
Merge pull request #11 from andriykohut/patch-1
Browse files Browse the repository at this point in the history
Fix for windows paths
  • Loading branch information
ddollar committed Nov 7, 2014
2 parents 23458f5 + c145ebc commit 0d7690a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/anvil/lib/anvil/manifest.rb
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def directory_manifest(dir, options={})
next if %w( . .. ).include?(File.basename(path))
next if File.pipe?(path)
next if path =~ /\.swp$/
next unless path =~ /^[A-Za-z0-9\-\_\.\/]*$/
next unless path =~ /^[A-Za-z0-9\-\_\.\/\:]*$/
manifest[relative] = file_manifest(path)
end
manifest
Expand Down

0 comments on commit 0d7690a

Please # to comment.