From 0963ffb2f9c22114e4b2516738e8c29b36e54673 Mon Sep 17 00:00:00 2001 From: Vicente Eduardo Ferrer Garcia Date: Mon, 28 Oct 2024 23:07:56 +0100 Subject: [PATCH] Minor bug. --- .github/workflows/test-macos.yml | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 5f2da3c..d4225f8 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -1,4 +1,4 @@ -name: Install MetaCall on MacOs Test +name: Install MetaCall on MacOS Test on: [push, pull_request, workflow_dispatch] diff --git a/install.sh b/install.sh index b37643e..4049682 100755 --- a/install.sh +++ b/install.sh @@ -453,7 +453,7 @@ uncompress() { # Get the binary files installed, use the tar directly because if we use the ${install_list} it is # going to exclude the binaries that were already installed, also do not include metacall itself ${CMD_SUDO} tar -tf "${tmp}" | sed 's/^\.//' \ - | grep "^${PLATFORM_BIN}/" \ + | grep -E "^${PLATFORM_BIN}/.+" \ | grep -v "^${PLATFORM_BIN}/metacall" \ | ${CMD_SUDO} tee "${bin_list}" > /dev/null