Use `mktemp -d` instead of `mktemp --directory`

This commit is contained in:
David Corbett 2017-10-25 14:31:22 -04:00 committed by Behdad Esfahbod
parent c4944920c0
commit fd786c768f
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
#!/bin/bash
dir=`mktemp --directory`
dir=`mktemp -d`
hb_shape=$1
shift