blog/tasks
Kazuhiro MUSASHI 3b4bd88c15 オリジナルデータを/home/webadm/works/public配下にコピー
```
--- a/tasks/production.rake
+++ b/tasks/production.rake
@@ -16,5 +16,7 @@ task :prod => [:prep] do
   end

   sh 'ssh -p 10022 webadm@10.0.1.234 "rm -rf /var/www/blog/*"'
+  sh 'ssh -p 10022 webadm@10.0.1.234 "rm -rf /home/webadm/works/public/*"'
   sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.234:/var/www/blog'
+  sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.234:/home/webadm/works/public'
 end
```
2019-07-16 19:39:27 +08:00
..
demo.rake initial commit 2019-03-31 19:00:21 +08:00
new.rake Create the new artcle markdown to be generated under content directory 2019-04-20 14:38:32 +08:00
prep.rake Separate the preparation part from the `build.rake`. 2019-06-29 19:33:32 +08:00
production.rake オリジナルデータを/home/webadm/works/public配下にコピー 2019-07-16 19:39:27 +08:00
staging.rake Create staging deploy task. 2019-06-29 19:33:32 +08:00
textlint.rake initial commit 2019-03-31 19:00:21 +08:00