Use set -ex in all bash scripts

This commit is contained in:
Andrew Chow 2020-05-24 19:24:39 -04:00
parent edcee233c6
commit 3d43984fe8
5 changed files with 8 additions and 2 deletions

View File

@ -1,6 +1,8 @@
#! /bin/bash
# Script for building standalone binary releases deterministically
set -ex
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
pip install -U pip

View File

@ -1,6 +1,8 @@
#! /bin/bash
# Script for building pypi distribution archives deterministically
set -ex
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"
pip install -U pip

View File

@ -1,7 +1,7 @@
#!/bin/bash
# Script which sets up Wine and builds the Windows standalone binary
set -e
set -ex
PYTHON_VERSION=3.6.8

View File

@ -1,5 +1,7 @@
#! /bin/bash
set -ex
pushd hwilib/ui
for file in *.ui
do

View File

@ -1,7 +1,7 @@
#! /bin/bash
# Generates the setup.py file
set -e
set -ex
# Setup poetry and install the dependencies
poetry install -E qt