aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Rakefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Rakefile b/Rakefile
index 5be79101..83e1a72e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -204,10 +204,10 @@ end
desc "copy dot files for deployment"
task :copydot do
- exclusions = [".", "..", ".DS_Store"]
- Dir["#{source_dir}/.*"].each do |file|
- if !File.directory?(file) && !exclusions.include?(file)
- cp(file, "#{public_dir}");
+ exclusions = [".", "..", ".DS_Store"]
+ Dir["#{source_dir}/**/.*"].each do |file|
+ if !File.directory?(file) && !exclusions.include?(file)
+ cp(file, file.gsub(/#{source_dir}/, "#{public_dir}"));
end
end
end