mirror of https://github.com/BOINC/boinc.git
20 lines
371 B
Tcsh
20 lines
371 B
Tcsh
#!/bin/csh
|
|
|
|
##
|
|
# post-Install Script for Macintosh BOINC Manager for OS X revised 1/21/06
|
|
##
|
|
|
|
echo "initial directory = $PWD"
|
|
echo "argument 1 = $1"
|
|
|
|
cd "$1"
|
|
|
|
echo "new directory = $PWD"
|
|
|
|
# Run the Postinstall Application
|
|
Contents/Resources/PostInstall.app/Contents/MacOS/PostInstall -part1
|
|
|
|
Contents/Resources/PostInstall.app/Contents/MacOS/PostInstall -part2 &
|
|
|
|
exit 0
|