From ab73a4775102e334265577307ff80995f747762c Mon Sep 17 00:00:00 2001 From: Your Name Date: Sun, 1 Jun 2025 17:54:13 +1200 Subject: [PATCH] dropshell release 2025.0601.1754 --- source/src/commands/shared_commands.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/src/commands/shared_commands.cpp b/source/src/commands/shared_commands.cpp index 1032a25..b398b6e 100644 --- a/source/src/commands/shared_commands.cpp +++ b/source/src/commands/shared_commands.cpp @@ -75,9 +75,9 @@ namespace dropshell // determine the architecture of the system std::string arch; #ifdef __aarch64__ - arch = "arm64"; + arch = "aarch64"; #elif __x86_64__ - arch = "amd64"; + arch = "x86_64"; #endif return arch; }