From d56db34c143f30933e8ecb7af578690fc7dc46f1 Mon Sep 17 00:00:00 2001 From: PyryM Date: Fri, 4 Oct 2024 14:50:04 -0400 Subject: [PATCH] fix binary fetching for osx --- codegen/fetch_wgpu_bins.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/codegen/fetch_wgpu_bins.py b/codegen/fetch_wgpu_bins.py index ec1e19b..b195ff0 100644 --- a/codegen/fetch_wgpu_bins.py +++ b/codegen/fetch_wgpu_bins.py @@ -144,8 +144,8 @@ def unzip_to(url: str, dest: str) -> None: [ "lipo", "-create", - f"{UNZIP_PATH}/libwgpu_native.dylib", - f"{UNZIP_PATH}_ARM/libwgpu_native.dylib", + f"{UNZIP_PATH}/lib/libwgpu_native.dylib", + f"{UNZIP_PATH}_ARM/lib/libwgpu_native.dylib", "-output", "xgpu/libwgpu_native.dylib", ]