Problems with install
Problems with install
- Subject: Problems with install
- From: Rob Keniger <email@hidden>
- Date: Tue, 9 Aug 2005 00:02:23 +1000
Hi,
I have an installer that I am testing with a bunch of users and for
the vast majority it's working fine. For two of my users who are both
using Mac OS X 10.3.9 (Dutch localisation), the installation is
failing intermittently. It has something to do with InstallationCheck
I think, but my InstallationCheck script is very simple, all it does
is call a simple tool which determines the location of Adobe GoLive,
and it completes successfully:
#!/bin/sh
echo "Running InstallationCheck, install package path is $1"
SCRIPT_FOLDER="$1/Contents/Resources"
DEST_FOLDER=`"${SCRIPT_FOLDER}/findapp" GoMk com.adobe.GoLive | /usr/
bin/sed -e 's/^\(.*\)\/[^\/]*$/\1/g'`
if [ "$DEST_FOLDER" = "nonexistent" ]; then
echo "Failed to determine GoLive application location." 1>&2
exit 112
else
echo "Success, found GoLive here: ${DEST_FOLDER}"
exit 0
fi
This is the output from the Console:
Running InstallationCheck, install package path is /Users/myUserName/
Desktop/MyPackage.pkg
Success, found GoLive here: /Applications/Adobe GoLive CS
2005-08-08 11:56:44.203 Installer[1059] *** -[NSCFDictionary length]:
selector not recognized [self = 0x34c560]
2005-08-08 11:56:44.241 Installer[1059] *** -[NSCFDictionary length]:
selector not recognized [self = 0x34c560]
At this point the installer hangs.
Any ideas? What does the error message above actually mean?
- rob.keniger
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Installer-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden