diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-04-26 17:45:27 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-04-26 17:45:27 +0200 |
commit | 574bfb639918cc1f8217af4ee2eccaaf8c25b19a (patch) | |
tree | a2a38bd2806f1ac4b1bc1b635c47ee5c43cdc9c6 /Makefile | |
parent | 3461366285233f2b3237f4a7c88c1da58f24a53d (diff) | |
parent | f8dbc8a37ff5935408a6a71907fea4fb0f5b5e46 (diff) | |
download | vyos-build-574bfb639918cc1f8217af4ee2eccaaf8c25b19a.tar.gz vyos-build-574bfb639918cc1f8217af4ee2eccaaf8c25b19a.zip |
Merge branch 'current' of github.com:vyos/vyos-build into buster
* 'current' of github.com:vyos/vyos-build:
Docker: fix pmacct build dependencies
Packages: support --blacklist option to not build individual packages
Packages: fix missing bytes stuck in the output buffer
Docker: add package requirements to build keepalived
Docker: Use close sections when working with jessie-backports
README: adjust chapters to new VyOS package build script
Packages: extract kernel version from defaults.json
Packages: use 'make kernelversion' instead of grep magic
Packages: add bgpq3 (debian/0.1.33-1) package to build procedure
Jenkins: archive ISO and build.log artifacts
Makefile: proper handle 'make iso' error codes
Packages: remove vyatta-quagga
Packages: add ethtool (debian/1%4.19-1) package to build procedure
Packages: define custom command for vyos-strongswan
intel: adjust URL for ixgbevf 4.5.2
Replace build-submodules with Python based package builder
Remove outdated/unmaintained submodules
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -28,9 +28,13 @@ prepare: .ONESHELL: iso: check_build_config clean prepare @set -e + @set -o pipefail @echo "It's not like I'm building this specially for you or anything!" cd $(build_dir) lb build 2>&1 | tee build.log + if [ "$?" != "0" ]; then + exit 1 + fi cd .. @scripts/copy-image |