From 94f77f26aff95bab083a838c9501d77557d4fc27 Mon Sep 17 00:00:00 2001 From: Nate Barbettini Date: Wed, 25 Sep 2024 13:29:50 -0700 Subject: [PATCH] full-dist: put toolkits in dist/toolkits/ (#68) This helps separate the SDK wheel from toolkit wheels, to make programmatic copying easier --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 42d0ed87..7da762d5 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ full-dist: clean-dist ## Build all projects and copy wheels to arcade/dist @cd arcade && poetry build # Create the arcade/dist directory if it doesn't exist - @mkdir -p arcade/dist + @mkdir -p arcade/dist/toolkits # Build and copy wheels for each toolkit @for toolkit_dir in toolkits/*; do \ @@ -82,7 +82,7 @@ full-dist: clean-dist ## Build all projects and copy wheels to arcade/dist toolkit_name=$$(basename "$$toolkit_dir"); \ echo "Building $$toolkit_name project..."; \ cd "$$toolkit_dir" && poetry build; \ - cp dist/*.whl ../../arcade/dist; \ + cp dist/*.whl ../../arcade/dist/toolkits; \ cd -; \ fi; \ done