From fb62b01b777cd6f62a5d0eb32d1b2eec21a27879 Mon Sep 17 00:00:00 2001 From: Vicente Eduardo Ferrer Garcia Date: Fri, 20 Sep 2024 17:21:29 +0200 Subject: [PATCH] Change tgz to tar.gz. --- .github/workflows/ci.yml | 4 ++-- README.md | 2 +- build.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a114ef6..f6e4c44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -155,7 +155,7 @@ jobs: - name: Test run: | mkdir distributable - tar -xvzf metacall-tarball-macos-${{ matrix.triplet.arch }}.tgz -C `pwd`/distributable + tar -xvzf metacall-tarball-macos-${{ matrix.triplet.arch }}.tar.gz -C `pwd`/distributable sudo cp -R `pwd`/distributable${{ matrix.triplet.install }}/ ${{ matrix.triplet.install }}/ rm -rf `pwd`/distributable export PATH="${{ matrix.triplet.install }}/bin:$PATH" @@ -168,7 +168,7 @@ jobs: with: fail_on_unmatched_files: true files: | - metacall-tarball-macos-${{ matrix.triplet.arch }}.tgz + metacall-tarball-macos-${{ matrix.triplet.arch }}.tar.gz install-test: name: Trigger Install Test Workflow diff --git a/README.md b/README.md index de01fce..6e83842 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ This brew formulae compiles MetaCall core for ARM64 and AMD64. The installation - Enhanced Metacall launcher: - Added more robust path detection for metacallcli based on the dsitributable type -The final distributable is generated using a Homebrew extension [`brew-pkg`](https://github.com/metacall/brew-pkg). It generates a installable `.pkg` and a portable `.tgz` file. The fork includes some extra features which have been described below. +The final distributable is generated using a Homebrew extension [`brew-pkg`](https://github.com/metacall/brew-pkg). It generates a installable `.pkg` and a portable `.tar.gz` file. The fork includes some extra features which have been described below. 1. **Recursive library patching**: The function recursively processes linked libraries. diff --git a/build.sh b/build.sh index 6e23084..dfa2bd2 100755 --- a/build.sh +++ b/build.sh @@ -43,4 +43,4 @@ brew tap --verbose metacall/brew-pkg brew install --verbose --HEAD metacall/brew-pkg/brew-pkg brew pkg --name metacall --compress --additional-deps python@3.12,ruby@3.3 metacall mv metacall.pkg release/metacall-tarball-macos-${METACALL_ARCH}.pkg -mv metacall.tgz release/metacall-tarball-macos-${METACALL_ARCH}.tgz +mv metacall.tar.gz release/metacall-tarball-macos-${METACALL_ARCH}.tar.gz