File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ let package = Package(
2121 . binaryTarget(
2222 name: " OpenMultitouchSupportXCF " ,
2323 url: " https://github.com/Kyome22/OpenMultitouchSupport/releases/download/3.0.0/OpenMultitouchSupportXCF.xcframework.zip " ,
24- checksum: " 9d430a4f675bddd4996405a45fcc1e0584d1f7a975c75c0e829915c15788a03c "
24+ checksum: " 5c38573d60348d429d03ec7335e61517df230724b8f1d0716c3c7d3e712798a1 "
2525 ) ,
2626 . target(
2727 name: " OpenMultitouchSupport " ,
Original file line number Diff line number Diff line change 1+ #! /bin/sh -
2+
3+ XC_FRAMEWORK_ZIP_PATH=" Framework/Product/OpenMultitouchSupportXCF.xcframework.zip"
4+ if [ -e $XC_FRAMEWORK_ZIP_PATH ]; then
5+ CHECKSUM=$( swift package compute-checksum $XC_FRAMEWORK_ZIP_PATH )
6+ echo " Checksum: ${CHECKSUM} "
7+ else
8+ echo " XCFramework.zip is not exist."
9+ fi
You can’t perform that action at this time.
0 commit comments