From 6a90737bbb5baa49bed19aebfa268dda772aca37 Mon Sep 17 00:00:00 2001 From: Jeff Hodges Date: Wed, 29 Jul 2015 14:54:35 -0700 Subject: [PATCH] make mktemp in integration tests work on OS X --- tests/integration/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/_common.sh b/tests/integration/_common.sh index be4e75098..6fe06b1ee 100755 --- a/tests/integration/_common.sh +++ b/tests/integration/_common.sh @@ -2,7 +2,7 @@ if [ "xxx$root" = "xxx" ]; then - root="$(mktemp -d)" + root="$(mktemp -d -t leitXXXX)" echo "Root integration tests directory: $root" fi store_flags="--config-dir $root/conf --work-dir $root/work"