Skip to content

Commit 278af07

Browse files
committed
Fixed aarch64 support
1 parent 6b26f3a commit 278af07

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
arch: [amd64, arm64, aarch64]
12+
arch: [amd64, arm64]
1313
os: [darwin, freebsd, linux]
1414
steps:
1515
- name: Checkout code

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ If this repo was useful to you, feel free to buy us some coffee! :)
183183

184184
- Changed single installation command to be more universal
185185
- Fixed fish shell support
186-
- Added aarch64 support [#22](https://github.com/hkdb/app/issues/22)
186+
- Fixed aarch64 support [#22](https://github.com/hkdb/app/issues/22)
187187
- Added reminder for enable/disable synatax errors [#23](https://github.com/hkdb/app/issues/23)
188188

189189

dist/getapp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ if [[ "$UNAMEM" == "x86_64" ]] || [[ "$UNAMEM" == "amd64" ]]; then
4848
elif [[ "$UNAMEM" == "arm64" ]]; then
4949
CPUARCH="arm64"
5050
elif [[ "$UNAMEM" == "aarch64" ]]; then
51-
CPUARCH="aarch64"
51+
CPUARCH="arm64"
5252
else
5353
echo -e "❌️ CPU Architecture not supported... Exiting...\n"
5454
exit 1

dist/updateapp.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if [[ "$UNAMEM" == "x86_64" ]] || [[ "$UNAMEM" == "amd64" ]]; then
3838
elif [[ "$UNAMEM" == "arm64" ]]; then
3939
CPUARCH="arm64"
4040
elif [[ "$UNAMEM" == "aarch64" ]]; then
41-
CPUARCH="aarch64"
41+
CPUARCH="arm64"
4242
else
4343
echo -e "❌️ CPU Architecture not supported... Exiting...\n"
4444
exit 1

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if [[ "$UNAMEM" == "x86_64" ]] || [[ "$UNAMEM" == "amd64" ]]; then
4949
elif [[ "$UNAMEM" == "arm" ]]; then
5050
CPUARCH="arm64"
5151
elif [[ "$UNAMEM" == "aarch64" ]]; then
52-
CPUARCH="aarch64"
52+
CPUARCH="arm64"
5353
else
5454
echo -e "❌️ CPU Architecture not supported... Exiting...\n"
5555
exit 1

0 commit comments

Comments
 (0)