10 lines
186 B
Bash
10 lines
186 B
Bash
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
if test -f "./h5m_files/msre.h5m"; then
|
|
python ./scripts/msre_geometry_plot.py
|
|
else
|
|
python ./scripts/step_to_h5m.py
|
|
python ./scripts/msre_geometry_plot.py
|
|
fi
|