diff --git a/.travis.yml b/.travis.yml index ec249769..59e8001a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,7 +55,7 @@ script: after_script: - mv -i coverage docs ~/gh-pages -- make/make-indexes.sh ~/gh-pages +- bash make/make-indexes.sh ~/gh-pages - mkdir -p ~/gh-pages/lib/doc/MathJax - echo 'document.write("");' > ~/gh-pages/lib/doc/MathJax/MathJax.js - touch ~/gh-pages/.nojekyll diff --git a/graph-lib/make/make-indexes.sh b/graph-lib/make/make-indexes.sh index 543a6707..aa28eb64 100644 --- a/graph-lib/make/make-indexes.sh +++ b/graph-lib/make/make-indexes.sh @@ -1,2 +1,2 @@ #!/bin/bash -find "$@" -type d -print0 | xargs -n 1 -r0 bash -c '(shopt -s nullglob; cd "$0"; if (! test -e index.html) || test -e .make-index-html; then touch .make-index-html; echo "" > index.html; for i in */ *.html; do if test "$i" != "index.htm"; then echo "$i" >> index.html; fi; done; echo "" >> index.html; fi)' +find "$@" -type d -print0 | xargs -n 1 -r0 bash -c '(shopt -s nullglob; cd "$0"; if (! test -e index.html) || test -e .make-index-html; then touch .make-index-html; echo "" >> index.html; fi)'