Skip to content

Commit

Permalink
Update bikeshed-ape.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored Aug 11, 2024
1 parent ec43e96 commit c529919
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bikeshed-ape.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,10 @@ int main(int argc, char *argv[]) {
try {
if (IsLinux() && IsX64()) {
std::filesystem::copy("/zip/bikeshed-linux_x86_64", cache_dir, std::filesystem::copy_options::recursive);
} else if (IsXnu()) {
std::filesystem::copy("/zip/bikeshed-macosx_10_9_universal2", cache_dir, std::filesystem::copy_options::recursive);
} else if (IsXnu() && IsX64()) {
std::filesystem::copy("/zip/bikeshed-macosx_10_9_x86_64", cache_dir, std::filesystem::copy_options::recursive);
} else if (IsXnu() && IsArm64()) {
std::filesystem::copy("/zip/bikeshed-macosx_11_0_arm64", cache_dir, std::filesystem::copy_options::recursive);
} else if (IsWindows() && IsX64()) {
std::filesystem::copy("/zip/bikeshed-win_amd64.exe", cache_dir, std::filesystem::copy_options::recursive);
} else {
Expand Down

0 comments on commit c529919

Please sign in to comment.