]> granicus.if.org Git - jq/commitdiff
mktemp needs 6 or more X's (fix #1000)
authorDavid Tolnay <dtolnay@gmail.com>
Sat, 24 Oct 2015 18:21:16 +0000 (11:21 -0700)
committerDavid Tolnay <dtolnay@gmail.com>
Sat, 24 Oct 2015 18:21:18 +0000 (11:21 -0700)
mktemp(1) isn't posix specified, but it's reasonable to use
mktemp(3) to implement it which requires 6 trailing X's in
the format

Thanks @sthen

tests/setup

index a6bc5f4561315619a8318263865502921bef6b36..d64ba29ca5653be51d1c2408930550f0cb3cf7e3 100755 (executable)
@@ -29,7 +29,7 @@ clean () {
     fi
 }
 trap clean EXIT
-d=`mktemp -d -t jqXXXXX || true`
+d=`mktemp -d -t jqXXXXXX || true`
 if [ -z "$d" ]; then
     echo "Your OS does not support mktemp(1) -d" 1>&2
     exit 1