Removed get-dsstore.sh, its no longer used.

CQTexperiment
vspader 2007-02-25 22:23:27 +00:00
parent df20c6c423
commit e6f2e7dd0d
1 changed files with 0 additions and 24 deletions

View File

@ -1,24 +0,0 @@
#!/bin/sh
#This script creates a .ds_store from a template dmg.
TEMPLATE_DMG=$1
DSSTORE=$2
TEMP_DIR=temp
bunzip2 -k ${TEMPLATE_DMG}.bz2
mkdir -p ${TEMP_DIR}
hdiutil attach "${TEMPLATE_DMG}" -noautoopen -quiet -mountpoint "${TEMP_DIR}"
cp ${TEMP_DIR}/.DS_Store ${DSSTORE}
DMG_DEV=`hdiutil info | grep "${TEMP_DIR}" | grep "Apple_HFS" | awk '{print $1}'`
hdiutil detach ${DMG_DEV} -quiet -force
rm -r ${TEMP_DIR}
rm ${TEMPLATE_DMG}