2019-04-19 21:56:39 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
mkdir -p ./assets/reveal
|
2019-05-16 10:18:28 +00:00
|
|
|
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
|
2019-05-16 01:18:02 +00:00
|
|
|
mkdir -p ./assets/reveal/plugin/
|
2019-05-16 09:44:45 +00:00
|
|
|
git clone https://github.com/denehyg/reveal.js-menu.git ./assets/reveal/plugin/menu
|
|
|
|
|
|
|
|
rm -f ./assets/reveal/plugin/menu/bower.json
|
|
|
|
rm -f ./assets/reveal/plugin/menu/CONTRIBUTING.md
|
|
|
|
rm -f ./assets/reveal/plugin/menu/LICENSE
|
|
|
|
rm -f ./assets/reveal/plugin/menu/package.json
|
|
|
|
rm -f ./assets/reveal/plugin/menu/README.md
|