summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/vespa-ci.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/docker/vespa-ci.sh b/docker/vespa-ci.sh
index 1d7698e522d..c22c7c0cf7a 100755
--- a/docker/vespa-ci.sh
+++ b/docker/vespa-ci.sh
@@ -25,3 +25,6 @@ cp -p ../dist/vespa.spec tmp/vespa.spec
docker build -t "$CI_DOCKER_IMAGE" -f ci/Dockerfile .
docker run --rm -v ${DIR}/..:/vespa --entrypoint /vespa-ci-internal.sh "$CI_DOCKER_IMAGE" "$GIT_COMMIT" \
2>&1 | tee vespa-ci-$(date +%Y-%m-%dT%H:%M:%S%z).log
+
+# Needed because of piping docker run to tee above
+exit ${PIPESTATUS[0]}