From 9a450b0d6322d6d5538c6923b84e4bdce084c86e Mon Sep 17 00:00:00 2001 From: Michael Bucari-Tovo Date: Wed, 15 Feb 2023 06:27:28 -0700 Subject: [PATCH] add 'macOS' to mac bundle name --- .releaseindex.json | 2 +- Documentation/InstallOnMac.md | 2 +- Scripts/targz2macosbundle.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.releaseindex.json b/.releaseindex.json index 65af875b..870c942e 100644 --- a/.releaseindex.json +++ b/.releaseindex.json @@ -2,5 +2,5 @@ "WindowsClassic": "Libation\\.\\d+\\.\\d+\\.\\d+-win(dows)?-classic\\.zip", "WindowsAvalonia": "Libation\\.\\d+\\.\\d+\\.\\d+-win(dows)?-chardonnay\\.zip", "LinuxAvalonia": "Libation\\.\\d+\\.\\d+\\.\\d+-linux-chardonnay\\.deb", - "MacOSAvalonia": "Libation\\.app-x64-\\d+\\.\\d+\\.\\d+\\.tgz" + "MacOSAvalonia": "Libation\\.app-macOS-x64-\\d+\\.\\d+\\.\\d+\\.tgz" } diff --git a/Documentation/InstallOnMac.md b/Documentation/InstallOnMac.md index f565999e..b57447ba 100644 --- a/Documentation/InstallOnMac.md +++ b/Documentation/InstallOnMac.md @@ -9,7 +9,7 @@ This walkthrough should get you up and running with Libation on your Mac. ## Install Libation -- Download the `Libation.app-x64-x.x.x.tgz` file from the latest release and extract it. +- Download the `Libation.app-macOS-x64-x.x.x.tgz` file from the latest release and extract it. - Move the extracted Libation app bundle to your applications folder. - Open a terminal (Go > Utilities > Terminal) - Copy/paste/run the following command (you'll be prompted to enter your password) diff --git a/Scripts/targz2macosbundle.sh b/Scripts/targz2macosbundle.sh index dc121216..e772ed31 100644 --- a/Scripts/targz2macosbundle.sh +++ b/Scripts/targz2macosbundle.sh @@ -77,7 +77,7 @@ tar -czvf "$BUNDLE-$VERSION.tar.gz" "$BUNDLE" mkdir bundle echo "moving to ./bundle/$BUNDLE-$VERSION.tar.gz" -mv "$BUNDLE-$VERSION.tar.gz" "./bundle/$BUNDLE-x64-$VERSION.tgz" +mv "$BUNDLE-$VERSION.tar.gz" "./bundle/$BUNDLE-macOS-x64-$VERSION.tgz" rm -r "$BUNDLE"