Skip to content

Commit 6d8e338

Browse files
committed
cicd: fix get.sh for Mac Intel
1 parent e27749d commit 6d8e338

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

get.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,11 @@ elif [[ "$OSTYPE" == "darwin"* ]]; then
1313
if [[ `uname -m` == "arm64" ]]; then
1414
DOWNLOAD_URL=`echo "$URLS" | grep darwin | grep aarch`
1515
elif [[ "$OSTYPE" == "x86_64" ]]; then
16-
DOWNLOAD_URL=`echo "$URLS" | grep darwin`
16+
DOWNLOAD_URL=`echo "$URLS" | grep darwin | grep x86_64`
1717
else
18-
echo error
18+
echo "No release found for your OS."
19+
echo "If you're running on one of the supported OSes (Linux, MacOS Intel/ARM), then this is a bug in the installation script."
20+
echo "Please report this by submitting a bug to https://github.com/lautarodragan/jolteon/issues."
1921
exit 1
2022
fi
2123
else

0 commit comments

Comments
 (0)