Re: PackageMaker Requirement
Re: PackageMaker Requirement
- Subject: Re: PackageMaker Requirement
- From: Stéphane Sudre <email@hidden>
- Date: Sun, 31 Aug 2008 20:53:36 +0200
On Aug 31, 2008, at 4:54 PM, Stéphane Sudre wrote:
[...]
/* If the path has again changed in Snow Leopard, you would need
to add another test */
if (my.target.systemVersion.ProductVersion >= '10.5.0')
{
tResult = system.files.fileExistsAtPath(tMountPoint + "/The/Path/
To/My/File/For/Leopard");
}
else if (my.target.systemVersion.ProductVersion >= '10.4.0')
It's probably:
if (system.compareVersions
(my.target.systemVersion.ProductVersion,'10.4.0')>=0)
that should be used if I am to believe the doc.
_______________________________________________
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