mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-24 01:37:23 +00:00
Merge pull request #154 from jcsims/rake_dotcopy_fix
Fixes #150. Strip leading path before checking for excluded file.
This commit is contained in:
commit
41cbe78251
2
Rakefile
2
Rakefile
@ -209,7 +209,7 @@ desc "copy dot files for deployment"
|
|||||||
task :copydot do
|
task :copydot do
|
||||||
exclusions = [".", "..", ".DS_Store"]
|
exclusions = [".", "..", ".DS_Store"]
|
||||||
Dir["#{source_dir}/**/.*"].each do |file|
|
Dir["#{source_dir}/**/.*"].each do |file|
|
||||||
if !File.directory?(file) && !exclusions.include?(file)
|
if !File.directory?(file) && !exclusions.include?(File.basename(file))
|
||||||
cp(file, file.gsub(/#{source_dir}/, "#{public_dir}"));
|
cp(file, file.gsub(/#{source_dir}/, "#{public_dir}"));
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user