File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ detect_arch() {
9
9
aarch64)
10
10
echo " android-arm64"
11
11
;;
12
+ x86_64)
13
+ echo " android-x86_64"
14
+ ;;
12
15
* )
13
16
echo " Unsupported architecture. Please create an issue on GitHub, and we will consider providing a binary for your architecture."
14
17
exit 1
@@ -27,7 +30,7 @@ download_binary() {
27
30
# Download the binary
28
31
echo " Downloading $FILE_NAME for $ARCH architecture..."
29
32
if ! curl --progress-bar --fail -L " $DOWNLOAD_URL " -o " $FILE_NAME " ; then
30
- echo " Failed to download the binary!"
33
+ echo " Failed to download the binary! Please check the URL and your connection: $DOWNLOAD_URL "
31
34
exit 1
32
35
fi
33
36
@@ -37,6 +40,7 @@ download_binary() {
37
40
chmod +x " $PREFIX /bin/axs"
38
41
39
42
echo " Binary downloaded and installed as 'axs'. You can now use the 'axs' command!"
43
+ echo " Make sure '$PREFIX /bin' is in your PATH."
40
44
}
41
45
42
46
download_binary
You can’t perform that action at this time.
0 commit comments