From cf11c2bb87658f75a29108cab62c00f1edf1c179 Mon Sep 17 00:00:00 2001 From: Loudbook Date: Wed, 9 Oct 2024 22:34:42 -0400 Subject: [PATCH] Silence --- macos-run.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/macos-run.sh b/macos-run.sh index 7d59959..a38bd07 100644 --- a/macos-run.sh +++ b/macos-run.sh @@ -1,10 +1,12 @@ if [[ $(uname -m) == 'arm64' ]]; then - cd /tmp && curl -LO "https://github.com/Loudbooks/ReportBook/releases/latest/download/reportbook-macos-aarch64" + echo Downloading the aarch64 version of ReportBook... + cd /tmp && curl -LO -s "https://github.com/Loudbooks/ReportBook/releases/latest/download/reportbook-macos-aarch64" chmod +x ./reportbook-macos-aarch64 ./reportbook-macos-aarch64 rm ./reportbook-macos-aarch64 else - cd /tmp && curl -LO "https://github.com/Loudbooks/ReportBook/releases/latest/download/reportbook-macos-x86_64" + echo Downloading the x86_64 version of ReportBook... + cd /tmp && curl -LO -s "https://github.com/Loudbooks/ReportBook/releases/latest/download/reportbook-macos-x86_64" chmod +x ./reportbook-macos-x86_64 ./reportbook-macos-x86_64 rm ./reportbook-macos-x86_64