Skip to content

Commit

Permalink
fix carthage
Browse files Browse the repository at this point in the history
  • Loading branch information
brustolin committed Feb 23, 2024
1 parent 87cb649 commit afeeedc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ let package = Package(
targets: [
.binaryTarget(
name: "Sentry",
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.20.0/Sentry.xcframework.zip",
checksum: "30be1fb3c113187792f943ebb3acda6dc1552ae2"
url: "https://github.com/getsentry/sentry-cocoa/releases/download/8.21.0-beta.0/Sentry.xcframework.zip",
checksum: "d41d6589e0490fd927b270cc0f87bfcf2b60f3e2a526280a655b43ae2dbe2766"
),
.target ( name: "SentrySwiftUI",
dependencies: ["Sentry", "SentryInternal"],
Expand Down
2 changes: 1 addition & 1 deletion scripts/update-package-sha.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -euo pipefail

GITHUB_BRANCH="${1}"
NEW_CHECKSUM=$(shasum ${2} | awk '{print $1}')
NEW_CHECKSUM=$(shasum -a 256 ${2} | awk '{print $1}')

sed -i '' "s/checksum: \".*\"/checksum: \"$NEW_CHECKSUM\"/" "Package.swift"

Expand Down

0 comments on commit afeeedc

Please sign in to comment.