summaryrefslogtreecommitdiff
path: root/evergreen/embedded_sdk_run_tests_post.sh
blob: c091afb7f51a8ec18bf3ea8d3105ffb4849a7cdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
. "$DIR/prelude.sh"

cd src/build

set -o verbose
set -o errexit

# If this is a patch build, blow away the file so our subsequent and optional s3.put
# doesn't run. That way, we won't overwrite the latest part in our patches.
if [ "${is_patch}" = "true" ]; then
  rm -f src/build/embedded-sdk.tgz
fi