mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 06:15:36 -04:00
Merge pull request #636 from letsencrypt/mktemp
make mktemp in integration tests work on OS X
This commit is contained in:
commit
1bbc3d38f8
1 changed files with 3 additions and 1 deletions
|
|
@ -2,7 +2,9 @@
|
|||
|
||||
if [ "xxx$root" = "xxx" ];
|
||||
then
|
||||
root="$(mktemp -d)"
|
||||
# The -t is required on OS X. It provides a template file path for
|
||||
# the kernel to use.
|
||||
root="$(mktemp -d -t leitXXXX)"
|
||||
echo "Root integration tests directory: $root"
|
||||
fi
|
||||
store_flags="--config-dir $root/conf --work-dir $root/work"
|
||||
|
|
|
|||
Loading…
Reference in a new issue