40d7431594
Change-Id: Id2460256dcb8a291166034b96cadfecf2615c243
16 lines
170 B
Bash
16 lines
170 B
Bash
#!/bin/bash
|
|
|
|
source functions-gbp
|
|
|
|
set -x
|
|
|
|
trap prepare_logs ERR
|
|
|
|
run_gbp_rally
|
|
exit_code=$?
|
|
|
|
# Prepare the log files for Jenkins to upload
|
|
prepare_logs
|
|
|
|
exit $exit_code
|