Skip to content

Commit

Permalink
Change tgz to tar.gz.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Sep 20, 2024
1 parent 9842ac3 commit fb62b01
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 [email protected],[email protected] 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

0 comments on commit fb62b01

Please sign in to comment.