Revision 8291
Added by Aaron Marcuse-Kubitza almost 12 years ago
run | ||
---|---|---|
1 |
#!/bin/bash |
|
2 |
set -o errexit |
|
1 |
#!/bin/bash -e |
|
3 | 2 |
. "$(dirname "${BASH_SOURCE[0]}")"/../../lib/util.run |
4 | 3 |
|
5 | 4 |
subdirs=(_MySQL raw_occurrence_record) |
Also available in: Unified diff
*run: Use -e option to bash on the #! line instead of separate `set -o errexit` line so that there is no issue with the `set -o errexit` line getting separated from the #! line (errexit is required for the scripts to work properly)