Skip to content

Commit

Permalink
Update trampoline.sh (#302)
Browse files Browse the repository at this point in the history
Clean up temp files at exit.
  • Loading branch information
engelke authored and theacodes committed Nov 7, 2018
1 parent a10b15e commit 8d4051b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .kokoro/trampoline.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash

# Copyright 2017 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand All @@ -14,4 +13,16 @@
# See the License for the specific language governing permissions and
# limitations under the License.

set -eo pipefail

# Always run the cleanup script, regardless of the success of bouncing into
# the container.

function cleanup() {
chmod +x ${KOKORO_GFILE_DIR}/trampoline_cleanup.sh
${KOKORO_GFILE_DIR}/trampoline_cleanup.sh
echo "cleanup";
}
trap cleanup EXIT

python3 "${KOKORO_GFILE_DIR}/trampoline_v1.py"

0 comments on commit 8d4051b

Please sign in to comment.