Skip to content

Commit

Permalink
Update Tarball URL used by Homebrew (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
gpassini committed Oct 24, 2023
1 parent 28c0ee2 commit 70c215f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion releasing/README.md
Expand Up @@ -63,7 +63,7 @@ The last step is to update the Homebrew recipe to use the latest version. First,

```sh
# download the source archive from GitHub
URL=https://github.com/fullstorydev/grpcurl/archive/v2.3.4.tar.gz
URL=https://github.com/fullstorydev/grpcurl/archive/refs/tags/v2.3.4.tar.gz
curl -L -o tmp.tgz $URL
# and compute the SHA
SHA="$(sha256sum < tmp.tgz | awk '{ print $1 }')"
Expand Down
2 changes: 1 addition & 1 deletion releasing/do-release.sh
Expand Up @@ -55,7 +55,7 @@ rm VERSION

# Homebrew release

URL="https://github.com/fullstorydev/grpcurl/archive/${VERSION}.tar.gz"
URL="https://github.com/fullstorydev/grpcurl/archive/refs/tags/${VERSION}.tar.gz"
curl -L -o tmp.tgz "$URL"
SHA="$(sha256sum < tmp.tgz | awk '{ print $1 }')"
rm tmp.tgz
Expand Down

0 comments on commit 70c215f

Please sign in to comment.