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