summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-12 02:19:28 -0400
committerDaniel Kahn Gillmor <dkg@fifthhorseman.net>2008-09-12 02:19:28 -0400
commit5c3ec72ee2c2f5a0d6d942b0998ba8cc3369f608 (patch)
tree2561ec272b3dc8dccb41a350a4cd655c6b9e1842 /utils
parente027e9199d81b656032963497b1d7b3e6808b3a4 (diff)
making invocations of mktemp portable (FreeBSD does not have a default value for the [template] arg
Diffstat (limited to 'utils')
-rwxr-xr-xutils/build-releasenote2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/build-releasenote b/utils/build-releasenote
index af7ceb3..1b832a4 100755
--- a/utils/build-releasenote
+++ b/utils/build-releasenote
@@ -25,7 +25,7 @@ checksums() {
checksums
-temprelease=$(mktemp)
+temprelease=$(mktemp ${TMPDIR:-/tmp}/tmp.XXXXXXXXXX)
trap "rm -f $temprelease" EXIT
set -e
head -n$(( $(grep -n '^-----BEGIN PGP SIGNED MESSAGE-----$' website/download.mdwn | head -n1 | cut -f1 -d:) - 1 )) website/download.mdwn >$temprelease