diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-04-06 18:56:12 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-04-18 18:03:00 +0200 |
commit | 384b46b554fdc6517edfffacd834b98f44ea4f41 (patch) | |
tree | 8bc2ea38fc990b8e9d7062761cf7dc07370dfb09 | |
parent | dd5734225d66a981aa6ea27359b01ce4ceedf42f (diff) | |
download | jenkins.debian.net-384b46b554fdc6517edfffacd834b98f44ea4f41.tar.xz |
reproducible: build: refactor: use set -e. I want to know when something goes wrong
-rwxr-xr-x | bin/reproducible_build.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index afbf10c9..a2f3bac2 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -11,6 +11,8 @@ common_init "$@" # common code defining db access . /srv/jenkins/bin/reproducible_common.sh +set -e + # support for different architectures (we have actual support only for amd64) ARCH="amd64" |