From 026502e4d4d08bd61bf44f93cd1dd510ebddf0b7 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Wed, 11 Jul 2007 15:53:18 +0000 Subject: Use mkdir -m instead of chmod git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@359 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- editor/pnmindex.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'editor/pnmindex.sh') diff --git a/editor/pnmindex.sh b/editor/pnmindex.sh index 15ba1abd..dfc5b82a 100755 --- a/editor/pnmindex.sh +++ b/editor/pnmindex.sh @@ -90,9 +90,8 @@ if [ $# -eq 0 ]; then fi tempdir="${TMPDIR-/tmp}/pnmindex.$$" -mkdir $tempdir || { echo "Could not create temporary file. Exiting."; exit 1;} -chmod 700 $tempdir - +mkdir -m 0700 $tempdir || \ + { echo "Could not create temporary file. Exiting."; exit 1;} trap 'rm -rf $tempdir' 0 1 3 15 tmpfile=$tempdir/pi.tmp -- cgit 1.4.1