added some comments in the travis script.

This commit is contained in:
John Tramm 2020-01-24 03:07:13 +00:00
parent 51cec9db93
commit b07d976749

View file

@ -1,13 +1,15 @@
#!/bin/bash
set -ex
# Compile argument list
# Argument List
args=" "
# Check for MPI
if [[ $MPI == 'y' ]]; then
args="${args} --mpi "
fi
# Check for event-based
if [[ $EVENT == 'y' ]]; then
args="${args} --event "
fi