We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e27749d commit 6d8e338Copy full SHA for 6d8e338
get.sh
@@ -13,9 +13,11 @@ elif [[ "$OSTYPE" == "darwin"* ]]; then
13
if [[ `uname -m` == "arm64" ]]; then
14
DOWNLOAD_URL=`echo "$URLS" | grep darwin | grep aarch`
15
elif [[ "$OSTYPE" == "x86_64" ]]; then
16
- DOWNLOAD_URL=`echo "$URLS" | grep darwin`
+ DOWNLOAD_URL=`echo "$URLS" | grep darwin | grep x86_64`
17
else
18
- echo error
+ 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."
21
exit 1
22
fi
23
0 commit comments