From 2070071c49b69b151f9c19014c526f6046f6cc23 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 30 Jul 2024 21:20:11 +0500 Subject: [PATCH] fix bbim builds... --- src/blenderbim/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/blenderbim/Makefile b/src/blenderbim/Makefile index 8bc9e0113a..1603e887b5 100644 --- a/src/blenderbim/Makefile +++ b/src/blenderbim/Makefile @@ -196,10 +196,10 @@ endif # Provides IFCJSON functionality # TODO: replace with main repo if https://github.com/IFCJSON-Team/IFC2JSON_python/pull/3 is merged. - cd build && wget -O master.zip https://github.com/Moult/IFC2JSON_python/archive/refs/heads/feature-ios-v0.8.0.zip - cd build && unzip master.zip && rm master.zip + cd build && wget -O ifc2json.zip https://github.com/Moult/IFC2JSON_python/archive/refs/heads/feature-ios-v0.8.0.zip + cd build && unzip ifc2json.zip && rm ifc2json.zip # IFCJSON doesn't have pyproject.toml, so we use python command. - cd build && . env/$(VENV_ACTIVATE) && cd IFC2JSON_python-master/file_converters && \ + cd build && . env/$(VENV_ACTIVATE) && cd IFC2JSON_python-*/file_converters && \ $(PYTHON) -c "from setuptools import setup; \ setup( \ name='ifcjson', \ @@ -208,7 +208,7 @@ endif author_email='jan@brewsky.nl', \ packages=['ifcjson'], \ )" bdist_wheel - cp -r build/IFC2JSON_python-master/file_converters/dist/*.whl build/wheels/ + cp -r build/IFC2JSON_python-*/file_converters/dist/*.whl build/wheels/ # Brickschema requires pkg_resources which is provided by Blender. # Provides Brickschema functionality