Browse CVS Repository
Contents of /enbanfukusyaya/EnbanFukusyaYa/MacOSX/release.sh
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Sun Jan 24 13:30:03 2010 UTC
(14 years, 2 months ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-sh
*** empty log message ***
| 1 |
#!/bin/sh |
| 2 |
read -p "version=" ver |
| 3 |
xcodebuild -configuration Release clean |
| 4 |
xcodebuild -configuration Release |
| 5 |
if [ $? -ne 0 ]; then |
| 6 |
echo "Build Error" |
| 7 |
exit 1 |
| 8 |
fi |
| 9 |
|
| 10 |
rm -rf tmp |
| 11 |
mkdir -p tmp/EnbanFukusyaYa |
| 12 |
cd tmp |
| 13 |
cp -p ../../ChangeLog EnbanFukusyaYa |
| 14 |
cp -p ../../README EnbanFukusyaYa |
| 15 |
cp -pr ../build/Release/EnbanFukusyaYa.app EnbanFukusyaYa |
| 16 |
hdiutil create -srcfolder EnbanFukusyaYa EnbanFukusyaYa-$ver-MacOSX.dmg |
|