mktemp templates

This commit is contained in:
Thomas Levine 2016-04-07 03:51:01 +00:00
parent 9fe6058fbf
commit 82c81822d3
1 changed files with 2 additions and 2 deletions

4
urchin
View File

@ -81,7 +81,7 @@ epoch_pax() {
mktemp_dir() {
# Support HP-UX mktemp that has wrong exit codes and
# can't make directories.
tmp=$(mktemp)
tmp=$(mktemp /tmp/urchin.XXXXXXXX)
if test -f "${tmp}"; then
rm "${tmp}"
fi
@ -89,7 +89,7 @@ mktemp_dir() {
echo "${tmp}"
}
mktemp_file() {
tmp=$(mktemp)
tmp=$(mktemp /tmp/urchin.XXXXXXXX)
if ! test -f "${tmp}"; then
> "${tmp}"
fi