diff options
author | Simon Glass <sjg@chromium.org> | 2020-03-18 09:42:53 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-04-10 21:32:09 -0400 |
commit | b52f5a1958fd1047da723a15f2a24dd849daac2c (patch) | |
tree | bb49baa5fdc891f13ac3357738d7d47869adbf04 /.azure-pipelines.yml | |
parent | 573605d44145a57ace06e60a4232f58cbfdce4b0 (diff) |
travis/gitlab/azure: Drop the buildman -d flag
This has no effect since -S is not given also. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index ea04463f4f..a95233f136 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -268,7 +268,7 @@ jobs: ret=0; tools/buildman/buildman -o /tmp -P -E --board ${TEST_PY_BD} ${OVERRIDE} || ret=$?; if [[ $ret -ne 0 && $ret -ne 129 ]]; then - tools/buildman/buildman -o /tmp -sdeP --board ${TEST_PY_BD}; + tools/buildman/buildman -o /tmp -seP --board ${TEST_PY_BD}; exit $ret; fi; fi @@ -420,7 +420,7 @@ jobs: ret=0; tools/buildman/buildman -o /tmp -P -E ${BUILDMAN} ${OVERRIDE} || ret=$?; if [[ $ret -ne 0 && $ret -ne 129 ]]; then - tools/buildman/buildman -o /tmp -sdeP ${BUILDMAN}; + tools/buildman/buildman -o /tmp -seP ${BUILDMAN}; exit $ret; fi; fi |