From be18f6fcc293f3dabf634aa8e119cf86d9c8a65a Mon Sep 17 00:00:00 2001 From: Norihiro Kamae Date: Mon, 1 Jan 2024 22:23:55 +0900 Subject: [PATCH] ci: Update check-sum of Packages.dmg According to an issue packagesdev/packages#144, the file was intentionally replaced by the owner. Let's use the new one. --- ci/macos/install-packagesbuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/macos/install-packagesbuild.sh b/ci/macos/install-packagesbuild.sh index 4697513..c06adcd 100755 --- a/ci/macos/install-packagesbuild.sh +++ b/ci/macos/install-packagesbuild.sh @@ -7,7 +7,7 @@ if which packagesbuild; then fi packages_url='http://s.sudre.free.fr/Software/files/Packages.dmg' -packages_hash='6afdd25386295974dad8f078b8f1e41cabebd08e72d970bf92f707c7e48b16c9' +packages_hash='9d9a73a64317ea6697a380014d2e5c8c8188b59d5fb8ce8872e56cec06cd78e8' for ((retry=5; retry>0; retry--)); do curl -o Packages.dmg $packages_url @@ -17,5 +17,5 @@ done hdiutil attach -noverify Packages.dmg packages_volume="$(hdiutil info -plist | grep '/Volumes/Packages' | sed 's/.*\(\/Volumes\/[^<]*\)<\/string>/\1/')" -sudo installer -pkg "${packages_volume}/packages/Packages.pkg" -target / +sudo installer -pkg "${packages_volume}/Install Packages.pkg" -target / hdiutil detach "${packages_volume}"