Chameleon

Chameleon Commit Details

Date:2012-01-05 20:38:50 (12 years 3 months ago)
Author:JrCs
Commit:1770
Parents: 1769
Message:Update installer - Look for a com.apple.Boot.plist file for users upgrading from legacy installations
Changes:
M/trunk/package/Distribution

File differences

trunk/package/Distribution
4141
4242
4343
44
45
44
45
46
47
48
49
4650
4751
4852
function get_chameleon_boot_plist() {
if (my.target) {
var chameleon_boot_plist = my.target.mountpoint + '/Extra/org.chameleon.Boot.plist'
return system.files.plistAtPath(chameleon_boot_plist);
var boot_plist_filenames = new Array( 'org.chameleon.Boot.plist', 'com.apple.Boot.plist' );
for ( var i = 0; i < boot_plist_filenames.length; i++ ) {
var plist = system.files.plistAtPath( my.target.mountpoint + '/Extra/' + boot_plist_filenames[i] );
if (plist)
return plist;
}
}
return null;
}

Archive Download the corresponding diff file

Revision: 1770