Use `mktemp -d` instead of `mktemp --directory`
This commit is contained in:
parent
c4944920c0
commit
fd786c768f
|
@ -1,6 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
dir=`mktemp --directory`
|
||||
dir=`mktemp -d`
|
||||
|
||||
hb_shape=$1
|
||||
shift
|
||||
|
|
Loading…
Reference in New Issue