dosdude1 / macos-catalina-patcher

macOS Catalina Patcher (http://dosdude1.com/catalina)
GNU General Public License v3.0
416 stars 58 forks source link

catalina patcher - An error occurred while installing updates. (-60006) #159

Open bzels123 opened 3 years ago

bzels123 commented 3 years ago

Hello,

Just after having successfully installed latest macOS Patcher Catalina (10.15.7), I get the error "An error occurred while installing updates. (-60006)" when I click on "Install 2 items"

Please see in attachement. Any idea?

thank you in advance kind regards

Capture d’écran 2021-04-18 à 18 45 43 Capture d’écran 2021-04-18 à 19 30 10

joevt commented 3 years ago

Patches can be downloaded manually. You can examine them to see what they do.

# Download Catalina patcher source code (for creating installer)
git clone https://github.com/joevt/macos-catalina-patcher.git

# Download patch updates
for theos in mojave catalina; do
    curl -s "http://dosdude1.com/${theos}/patchupdates/updates.plist" > ${theos}updates.plist
    [[ -d ${theos}updatepatches ]] || mkdir ${theos}updatepatches

    for theurl in $(plutil -p ${theos}updates.plist | sed -nE '/^ +"patchURL" => "(.*)"$/s//\1/p'); do
        echo $theurl
        thezip="${theurl##*/}"
        thefile="${thezip%.zip}"

        [[ -d $thefile ]] || mkdir "${theos}updatepatches/$thefile"
        curl -s "$theurl" > "${theos}updatepatches/$thefile/$thezip"
        open "${theos}updatepatches/$thefile/$thezip"
    done
done
joevt commented 3 years ago
# Currently installed updates:
/Library/Application\ Support/macOS\ Catalina\ Patcher/installedPatches.plist
/Library/Application\ Support/macOS\ Mojave\ Patcher/installedPatches.plist
/Library/Application\ Support/High\ Sierra\ Patcher/installedPatches.plist

The Catalina Patcher has source code for Post installer patches (Objective C code - search for self setName). Most of them are also available as updates (bash scripts - listed in the updates.plist file that can be downloaded using the script in my previous post).