From 310d13ac75ca66eb1c4c9470a36891e92f711e03 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Tue, 9 Mar 2021 08:36:15 +1100 Subject: [PATCH] Unbreak macos builds --- src/ifcblenderexport/Makefile | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/ifcblenderexport/Makefile b/src/ifcblenderexport/Makefile index 2702894fb6..3eabe9d1d4 100644 --- a/src/ifcblenderexport/Makefile +++ b/src/ifcblenderexport/Makefile @@ -229,18 +229,20 @@ endif rm -rf dist/working # Required by IFCClash - mkdir dist/working ifeq ($(PLATFORM), linux) + mkdir dist/working cd dist/working && wget https://files.pythonhosted.org/packages/0c/fa/00d85f893b02289e2942849d97f8818dde8e2111182e825fb3a735677791/python_fcl-0.0.12-cp37-cp37m-manylinux1_x86_64.whl -endif -ifeq ($(PLATFORM), win) - cd dist/working && wget https://files.pythonhosted.org/packages/19/e6/6e9f33fb59e8f27c0e1592bd26e644bc92b85c942b072b2d3854105d5887/python_fcl_win32-0.0.12.post3-py3-none-win_amd64.whl -endif cd dist/working && unzip python_fcl* cp -r dist/working/fcl dist/blenderbim/libs/site/packages/ - - # Cleanup after python_fcl rm -rf dist/working +endif +ifeq ($(PLATFORM), win) + mkdir dist/working + cd dist/working && wget https://files.pythonhosted.org/packages/19/e6/6e9f33fb59e8f27c0e1592bd26e644bc92b85c942b072b2d3854105d5887/python_fcl_win32-0.0.12.post3-py3-none-win_amd64.whl + cd dist/working && unzip python_fcl* + cp -r dist/working/fcl dist/blenderbim/libs/site/packages/ + rm -rf dist/working +endif # Required by BIMTester mkdir dist/working