From 65b29345010d75eaf9699b5940d1d8a9b4f0ea49 Mon Sep 17 00:00:00 2001 From: Mark Hayes Date: Tue, 3 Jul 2012 14:51:47 -0700 Subject: [PATCH] symlink images, stylesheets, and javascripts into docs/ directory --- config/deploy.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/deploy.rb b/config/deploy.rb index 736a39cd59..77d681e8b6 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -29,6 +29,9 @@ run "rm -rf #{release_path}/marketing/cache" run "ln -nfs #{shared_path}/cache #{release_path}/marketing/cache" run "ln -nfs #{release_path}/images/orbit #{release_path}/marketing/images/orbit" + run "ln -nfs #{release_path}/marketing/images #{release_path}/marketing/docs/images" + run "ln -nfs #{release_path}/marketing/stylesheets #{release_path}/marketing/docs/stylesheets" + run "ln -nfs #{release_path}/marketing/javascripts #{release_path}/marketing/docs/javascripts" end desc "Symlink to stylesheets and javascripts"