Use set -ex in all bash scripts
This commit is contained in:
parent
edcee233c6
commit
3d43984fe8
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
@ -1,5 +1,7 @@
|
||||
#! /bin/bash
|
||||
|
||||
set -ex
|
||||
|
||||
pushd hwilib/ui
|
||||
for file in *.ui
|
||||
do
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user