Improve comment clarity for ZIP creation behavior

Co-authored-by: jmiller-moko <230051081+jmiller-moko@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-05 08:18:35 +00:00
parent 41f6affebb
commit bbb50580cd

View File

@@ -667,7 +667,8 @@ else:
ZIP="${REPO_NAME}-${VERSION}-${SUFFIX}.zip" ZIP="${REPO_NAME}-${VERSION}-${SUFFIX}.zip"
# Create ZIP with development artifact exclusions # Create ZIP with development artifact exclusions
# Only zip the contents of the src folder # Zip only the contents of the src folder (not the src/ folder itself)
# This creates a ZIP with extension files at the root level for direct installation
cd src cd src
zip -r -X "${DIST_DIR}/${ZIP}" . \ zip -r -X "${DIST_DIR}/${ZIP}" . \
-x ".git/**" \ -x ".git/**" \