[travis] Run make on org

This commit is contained in:
Ivan Malison 2017-09-08 12:57:43 -07:00
parent 83137e6be6
commit f4e0728237
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -13,6 +13,18 @@ export PATH="$HOME/.evm/bin:$PATH"
curl -fsSkL https://raw.github.com/cask/cask/master/go | python
cask install
run_make_on_org
cask exec emacs --script generate-html.el
mv "$THIS_DIR/../dotfiles/emacs.d/README.html" .
function run_make_on_org () {
original="$(pwd)"
cd .cask
cd "$(ls | head)"
cd elpa
cd "$(ls | grep org-plus)"
make autoloads
cd $original
}