From 26960a8a25f8556f712d7330adf92fd624c47975 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Fri, 4 Sep 2015 17:47:11 +0200 Subject: [PATCH] miniupnpc/testminiwget.sh: fix for OS X mktemp --- miniupnpc/testminiwget.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniupnpc/testminiwget.sh b/miniupnpc/testminiwget.sh index 67f3c6d..690b405 100755 --- a/miniupnpc/testminiwget.sh +++ b/miniupnpc/testminiwget.sh @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: testminiwget.sh,v 1.12 2015/07/16 15:13:49 nanard Exp $ +# $Id: testminiwget.sh,v 1.13 2015/09/03 17:57:44 nanard Exp $ # project miniupnp : http://miniupnp.free.fr/ # (c) 2011-2015 Thomas Bernard # @@ -15,7 +15,7 @@ # The script was tested and works with ksh, bash # it should now also run with dash -TMPD=`mktemp -t -d miniwgetXXXXXXXXXX` +TMPD=`mktemp -d -t miniwgetXXXXXXXXXX` HTTPSERVEROUT="${TMPD}/httpserverout" EXPECTEDFILE="${TMPD}/expectedfile" DOWNLOADEDFILE="${TMPD}/downloadedfile"