build 600 B

123456789101112131415161718192021222324252627
  1. #!/bin/sh
  2. #
  3. # Copyright © 2014-2015, Peter Harpending. <pharpend2@gmail.com>
  4. #
  5. # Copying and distribution of this file, with or without modification, are
  6. # permitted in any medium without royalty provided the copyright notice and this
  7. # notice are preserved. This file is offered as-is, without any warranty.
  8. clean_and_die() {
  9. cd $orig_dir
  10. rm -rf tmp
  11. exit $1
  12. }
  13. orig_dir=$(pwd)
  14. mkdir tmp
  15. cp -rvf lysa.ltx appendices/* chapters/* bibliographies/* images/* tmp/
  16. cd tmp
  17. pdflatex lysa.ltx || clean_and_die 1
  18. bibtex lysa
  19. pdflatex lysa.ltx && pdflatex lysa.ltx
  20. cp lysa.pdf ..
  21. clean_and_die 0