aboutsummaryrefslogtreecommitdiff
path: root/post-build-reports.yaml
diff options
context:
space:
mode:
authorMilosz Wasilewski <milosz.wasilewski@linaro.org>2016-06-20 23:02:28 +0100
committerFathi Boudra <fathi.boudra@linaro.org>2016-06-21 10:02:53 +0300
commitf273f193e7af0728d15147e15f7a26d8b45822de (patch)
tree9e922f42765bdad4e6b6fbda96fe76d58305384b /post-build-reports.yaml
parentf5cc51e48d275365fe79e8529c60297a5861631b (diff)
post-build-reports: fixed shell exit code
make jenkins happy when there are no files to delete in the first build step Change-Id: I019ad8f189f579802ccf3e68e4ce4cfcc55e9822 Signed-off-by: Milosz Wasilewski <milosz.wasilewski@linaro.org>
Diffstat (limited to 'post-build-reports.yaml')
-rw-r--r--post-build-reports.yaml8
1 files changed, 4 insertions, 4 deletions
diff --git a/post-build-reports.yaml b/post-build-reports.yaml
index 5d5578c4..355c5217 100644
--- a/post-build-reports.yaml
+++ b/post-build-reports.yaml
@@ -48,10 +48,10 @@
builders:
- shell: |
#!/bin/bash
- # Send to art-reports
- rm artifacts/pinned-manifest.xml
- rm artifacts/boot_oat_size*
- rm artifacts/avg_oat_size*
+ rm -f \
+ artifacts/pinned-manifest.xml \
+ artifacts/boot_oat_size* \
+ artifacts/avg_oat_size*
- copyartifact:
project: ${SOURCE_PROJECT_NAME}
filter: 'pinned-manifest.xml'