Fix #55: create gh-pages dir before copying.

This commit is contained in:
Chris McCormick 2024-11-15 11:20:56 +00:00
parent fa99b05b06
commit 6ffbc21921

View file

@ -3,6 +3,8 @@
(require '[babashka.fs :as fs]
'[babashka.tasks :refer [shell]])
(fs/create-dirs "gh-pages")
(fs/copy "resources/public/index.html" "gh-pages"
{:replace-existing true})