not sure why it doesn't work the other way

This commit is contained in:
Jean-Paul Calderone 2019-04-04 10:45:17 -04:00
parent f794160dcf
commit f39f6bf2f6
2 changed files with 8 additions and 2 deletions

View File

@ -1,4 +1,7 @@
#!/bin/bash -eo pipefail
#!/bin/bash
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
set -euxo pipefail
# The filesystem location of the wheelhouse which we'll populate with wheels
# for all of our dependencies.

View File

@ -1,4 +1,7 @@
#!/bin/bash -eo pipefail
#!/bin/bash
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
set -euxo pipefail
# Python packages we need to support the test infrastructure. *Not* packages
# Tahoe-LAFS itself (implementation or test suite) need.