We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We had a silent failure in the run_daily script after the clock rollover (which affects the daily downloading of open data)
Set the bash options to ensure that scripts fail properly (e.g. set -euo pipefail or similar)
set -euo pipefail
The text was updated successfully, but these errors were encountered:
Using set -e -o pipefail is the way to go. Though good in principle conda shell scripts are not immune to violating the unset variable option
set -e -o pipefail
Sorry, something went wrong.
Dev #5: amending options, as well as small fixes
425231a
No branches or pull requests
We had a silent failure in the run_daily script after the clock rollover (which affects the daily downloading of open data)
Set the bash options to ensure that scripts fail properly (e.g.
set -euo pipefail
or similar)The text was updated successfully, but these errors were encountered: