about summary refs log tree commit diff
path: root/editor/pnmindex.sh
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-07-11 15:53:18 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-07-11 15:53:18 +0000
commit026502e4d4d08bd61bf44f93cd1dd510ebddf0b7 (patch)
tree93446474959f449e4fe95ab1348e64ca372cd854 /editor/pnmindex.sh
parent4b643270db559df6dba421a9e4371e19c8413b32 (diff)
downloadnetpbm-mirror-026502e4d4d08bd61bf44f93cd1dd510ebddf0b7.tar.gz
netpbm-mirror-026502e4d4d08bd61bf44f93cd1dd510ebddf0b7.tar.xz
netpbm-mirror-026502e4d4d08bd61bf44f93cd1dd510ebddf0b7.zip
Use mkdir -m instead of chmod
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@359 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor/pnmindex.sh')
-rwxr-xr-xeditor/pnmindex.sh5
1 files changed, 2 insertions, 3 deletions
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