From f39f6bf2f629831431e69fdc5f02b915e7db27b9 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Thu, 4 Apr 2019 10:45:17 -0400 Subject: [PATCH] not sure why it doesn't work the other way --- .circleci/create-virtualenv.sh | 5 ++++- .circleci/populate-wheelhouse.sh | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.circleci/create-virtualenv.sh b/.circleci/create-virtualenv.sh index 20598aa8e..a18fdf614 100755 --- a/.circleci/create-virtualenv.sh +++ b/.circleci/create-virtualenv.sh @@ -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. diff --git a/.circleci/populate-wheelhouse.sh b/.circleci/populate-wheelhouse.sh index 1ee2a7646..9d90d19bb 100755 --- a/.circleci/populate-wheelhouse.sh +++ b/.circleci/populate-wheelhouse.sh @@ -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.