Commit fc3542f6 authored by Jack Jansen's avatar Jack Jansen

- Create TMPDIR only if it doesn't exist yet

- Set the installer to use our permissions, not influenced by the umask.
parent befa37dd
......@@ -48,7 +48,9 @@ else
mkdir -p $BUILDROOT
fi
rm -rf $DMGDIR
mkdir $TMPDIR
if [ ! -e $TMPDIR ]; then
mkdir $TMPDIR
fi
chgrp admin $TMPDIR
mkdir -p $DMGDIR/root
......@@ -118,6 +120,7 @@ python $PYTHONSRC/Mac/scripts/buildpkg.py \
--NeedsAuthorization="YES" \
--Relocatable="NO" \
--InstallOnly="YES" \
--UseUserMask="NO" \
$INSTALLROOT \
$RESOURCEDIR
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment