2018-07-23 11:04:13 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -euo pipefail
|
|
|
|
IFS=$'\n\t'
|
|
|
|
|
2019-04-10 09:37:24 +01:00
|
|
|
if [ ! -f 'keys.py' ]; then
|
|
|
|
echo "missing keys.py file; please copy keys.dist.py to keys.py and fill in the needed values inside"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-07-25 13:24:31 +01:00
|
|
|
python3 nasg.py "$@"
|
2019-08-12 10:46:46 +01:00
|
|
|
if [ -f 'post-run.sh' ]; then
|
|
|
|
bash 'post-run.sh'
|
|
|
|
fi
|