aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ijar
diff options
context:
space:
mode:
authorGravatar Androbin <robin.richtsfeld@gmail.com>2017-11-08 21:31:52 +0100
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2017-11-16 01:27:34 +0100
commit85e4896db911f77f1223f080c540b8cbf133f873 (patch)
tree67afec5f686ac66ebddb4fbed3b7999ad6262795 /third_party/ijar
parentdc7399af31d53d9b94b844baaee3e7c918cf10d4 (diff)
Improve shell scripts in third_party/ (#4052)
Closes #4052. Change-Id: I30c4dc047195404a6ff63338ac4a944bb2755a1f
Diffstat (limited to 'third_party/ijar')
-rwxr-xr-xthird_party/ijar/test/ijar_test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/ijar/test/ijar_test.sh b/third_party/ijar/test/ijar_test.sh
index 0b9a92fb2d..5279f15f84 100755
--- a/third_party/ijar/test/ijar_test.sh
+++ b/third_party/ijar/test/ijar_test.sh
@@ -41,7 +41,7 @@ shift
source ${DIR}/testenv.sh || { echo "testenv.sh not found!" >&2; exit 1; }
function cleanup() {
- rm -fr "$TEST_TMPDIR"/*
+ rm -fr "${TEST_TMPDIR:-sentinel}"/*
}
trap cleanup EXIT