Skip to content

Commit 5f5ae3b

Browse files
committed
fix: update Makefile to package dist contents directly instead of dist folder
1 parent 99dcc77 commit 5f5ae3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,6 @@ dist-only:
185185
fi; \
186186
fi; \
187187
echo "Packaging as: $${DIST_NAME}.tar.gz"; \
188-
cd build && tar -czf "../$${DIST_NAME}.tar.gz" dist/; \
188+
cd build/dist && tar -czf "../../$${DIST_NAME}.tar.gz" . && cd ../..; \
189189
echo "Distribution package created: $${DIST_NAME}.tar.gz"; \
190-
ls -lh "../$${DIST_NAME}.tar.gz"
190+
ls -lh "$${DIST_NAME}.tar.gz"

0 commit comments

Comments
 (0)