diff --git a/README.md b/README.md
index 0104683..aad5240 100644
--- a/README.md
+++ b/README.md
@@ -103,6 +103,10 @@ See the following links:
Update History
+ - October 1st 2023
+
+ - Fix gpg key import for ARM64 builds
+
- January 14th 2023
- Change connectivity check from google.com to minecraft.net to prevent blocking in some countries
diff --git a/SetupMinecraft.sh b/SetupMinecraft.sh
index bbf2b8b..43f6dbc 100755
--- a/SetupMinecraft.sh
+++ b/SetupMinecraft.sh
@@ -246,8 +246,8 @@ Check_Architecture() {
# ARM architecture detected -- download QEMU and dependency libraries
echo "aarch64 platform detected -- installing box64..."
GetList=$(sudo curl -k -L -o /etc/apt/sources.list.d/box64.list https://ryanfortner.github.io/box64-debs/box64.list)
- GetKey=$(sudo curl -k -L https://ryanfortner.github.io/box64-debs/KEY.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/box64-debs-archive-keyring.gpg)
- sudo DEBIAN_FRONTEND=noninteractive apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get install box64 -y
+ GetKey=$(sudo curl -k -L https://ryanfortner.github.io/box64-debs/KEY.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/box64-debs-archive-keyring.gpg)
+ sudo DEBIAN_FRONTEND=noninteractive apt-get update && sudo DEBIAN_FRONTEND=noninteractive apt-get install box64-rpi4arm64 -y
if [ -n "$(which box64)" ]; then
echo "box64 installed successfully"