From f67db713121d87e4360ba82fecab663bec7ed033 Mon Sep 17 00:00:00 2001 From: Peter Amiri Date: Thu, 23 Apr 2026 14:09:02 -0700 Subject: [PATCH] fix(config): drop stale packages/ copy from base-template build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR #2266 removed the packages/ directory in favor of the external wheels-packages registry but missed this cp line, breaking the release and snapshot workflows. The base-template scaffold no longer ships bundled packages — users install them via the registry. Co-Authored-By: Claude Opus 4.7 (1M context) --- tools/build/scripts/prepare-base.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/build/scripts/prepare-base.sh b/tools/build/scripts/prepare-base.sh index 4c0279a1ce..bc06cfd8af 100755 --- a/tools/build/scripts/prepare-base.sh +++ b/tools/build/scripts/prepare-base.sh @@ -32,7 +32,6 @@ echo "Copying app scaffold files..." cp -r app "${BUILD_DIR}/" cp -r config "${BUILD_DIR}/" cp -r db "${BUILD_DIR}/" -cp -r packages "${BUILD_DIR}/" cp -r plugins "${BUILD_DIR}/" cp -r public "${BUILD_DIR}/" cp -r tests "${BUILD_DIR}/"