• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Copied from https://github.com/googleapis/google-cloud-python/blob/master/.kokoro/trampoline.sh
3
4set -eo pipefail
5
6python3 "${KOKORO_GFILE_DIR}/trampoline_v1.py"  || ret_code=$?
7
8chmod +x ${KOKORO_GFILE_DIR}/trampoline_cleanup.sh
9${KOKORO_GFILE_DIR}/trampoline_cleanup.sh || true
10
11exit ${ret_code}
12