* Fix #55: create gh-pages dir before copying. * Update changelog.
This commit is contained in:
parent
fa99b05b06
commit
6da99ffc90
|
@ -9,6 +9,7 @@
|
|||
<!-- - Create Github release with updated links from `doc/links.md` -->
|
||||
<!-- - `bb gh-pages` -->
|
||||
|
||||
- [#55](https://github.com/babashka/babashka/issues/55): create gh-pages dir before using.
|
||||
- [#89](https://github.com/babashka/babashka/issues/89): allow `evaluate_script_tags` to specify individual scripts.
|
||||
- [#87](https://github.com/babashka/scittle/issues/87): prod build on fresh checkout fails
|
||||
|
||||
|
|
|
@ -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})
|
||||
|
||||
|
|
Loading…
Reference in a new issue