blog/tasks
Kazuhiro MUSASHI 20da08ecbb Delete the `public` directory before generating the contents.
```
--- a/tasks/build.rake
+++ b/tasks/build.rake
@@ -20,8 +20,6 @@ end

 desc 'Generate the HTML pages'
 task :build do
-  sh 'hugo'
-
   cd 'content/post' do
     if os == :linux
       sh 'grep -l ecx.images-amazon.com *.md | sort | uniq | xargs --no-run-if-empty sed -ie "s/http:\/\/ecx.images-amazon.com/https:\/\/images-na.ssl-images-amazon.com/g"'
@@ -33,4 +31,10 @@ task :build do
     sh 'rm *.mde || true'
     sh 'rm *.md-e || true'
   end
+
+  cd 'public' do
+    sh 'rm -rf *'
+  end
+
+  sh 'hugo'
 end
```
2019-04-13 19:03:45 +08:00
..
build.rake Delete the `public` directory before generating the contents. 2019-04-13 19:03:45 +08:00
demo.rake initial commit 2019-03-31 19:00:21 +08:00
deploy.rake initial commit 2019-03-31 19:00:21 +08:00
new.rake Delete the unnecessary commands from the new task. 2019-04-02 23:12:33 +07:00
test.rake initial commit 2019-03-31 19:00:21 +08:00
textlint.rake initial commit 2019-03-31 19:00:21 +08:00