mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-23 07:53:29 -06:00
bdb8c8eeff
if some command fails, it now stops.
12 lines
310 B
Bash
Executable File
12 lines
310 B
Bash
Executable File
#! /bin/sh
|
|
|
|
# this script builds the eWoms handbook from its LaTeX sources. The
|
|
# result file is called "ewoms-handbook.pdf"
|
|
|
|
latex ewoms-handbook || exit $?
|
|
bibtex ewoms-handbook || exit $?
|
|
latex ewoms-handbook || exit $?
|
|
latex ewoms-handbook || exit $?
|
|
dvipdf ewoms-handbook || exit $?
|
|
rm ewoms-handbook.dvi
|