dropshell release 2025.0601.1754
Some checks failed
Dropshell Test / Build_and_Test (push) Failing after 3m31s

This commit is contained in:
Your Name 2025-06-01 17:54:13 +12:00
parent 1da7dc7951
commit ab73a47751

View File

@ -75,9 +75,9 @@ namespace dropshell
// determine the architecture of the system // determine the architecture of the system
std::string arch; std::string arch;
#ifdef __aarch64__ #ifdef __aarch64__
arch = "arm64"; arch = "aarch64";
#elif __x86_64__ #elif __x86_64__
arch = "amd64"; arch = "x86_64";
#endif #endif
return arch; return arch;
} }