fix: added missing fonts to assets
This commit is contained in:
parent
755931a7cb
commit
667bc0e2cb
1 changed files with 8 additions and 1 deletions
|
@ -1,7 +1,14 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
mkdir -p ./assets/reveal
|
mkdir -p ./assets/reveal
|
||||||
curl -sL "https://github.com/hakimel/reveal.js/archive/${1:-3.8.0}.tar.gz" | tar -xvz --strip-components=1 -C ./assets/reveal --wildcards *.js --wildcards *.css --wildcards *.html --exclude test --exclude gruntfile.js
|
curl -sL "https://github.com/hakimel/reveal.js/archive/${1:-3.8.0}.tar.gz" | tar -xvz --strip-components=1 -C ./assets/reveal \
|
||||||
|
--wildcards *.js \
|
||||||
|
--wildcards *.css \
|
||||||
|
--wildcards *.html \
|
||||||
|
--wildcards *.woff \
|
||||||
|
--wildcards *.ttf \
|
||||||
|
--exclude test \
|
||||||
|
--exclude gruntfile.js
|
||||||
mkdir -p ./assets/reveal/plugin/
|
mkdir -p ./assets/reveal/plugin/
|
||||||
git clone https://github.com/denehyg/reveal.js-menu.git ./assets/reveal/plugin/menu
|
git clone https://github.com/denehyg/reveal.js-menu.git ./assets/reveal/plugin/menu
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue