Merge pull request #740 from silasdb/master
Use portable -p instead of --tmpdir for mktemp
This commit is contained in:
commit
996bbd084f
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ fetch_file() {
|
|||
|
||||
fetch_and_prepare_file() {
|
||||
# shellcheck disable=SC2016
|
||||
printf 'tmpdir="$(mktemp -d --tmpdir="/tmp" "%s")"\n' "${__type##*/}.XXXXXXXXXX"
|
||||
printf 'tmpdir="$(mktemp -d -p "/tmp" "%s")"\n' "${__type##*/}.XXXXXXXXXX"
|
||||
# shellcheck disable=SC2016
|
||||
printf 'cd "$tmpdir"\n'
|
||||
# shellcheck disable=SC2059
|
||||
|
|
Loading…
Reference in a new issue