Re: Problems with install
Re: Problems with install
- Subject: Re: Problems with install
- From: Christopher Ryan <email@hidden>
- Date: Mon, 8 Aug 2005 08:57:43 -0700
Does the failure happen if you remove the InstallationCheck script?
Does the failure happen before or after the user selects a volume?
Does this happen on 10.4 (it may be a bug already fixed in 10.4)?
Can I get a copy of the package to try out?
Chris
Mac OS X Installation
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