Skip to content

Commit 2130474

Browse files
codebytereMylesBorins
authored andcommitted
build: fix zlib tarball generation
PR-URL: nodejs#32094 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Myles Borins <[email protected]>
1 parent 7546686 commit 2130474

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,6 @@ $(TARBALL): release-only $(NODE_EXE) doc
10321032
$(RM) -r $(TARNAME)/deps/v8/samples
10331033
$(RM) -r $(TARNAME)/deps/v8/tools/profviz
10341034
$(RM) -r $(TARNAME)/deps/v8/tools/run-tests.py
1035-
$(RM) -r $(TARNAME)/deps/zlib/contrib # too big, unused
10361035
$(RM) -r $(TARNAME)/doc/images # too big
10371036
$(RM) -r $(TARNAME)/test*.tap
10381037
$(RM) -r $(TARNAME)/tools/cpplint.py
@@ -1043,6 +1042,7 @@ $(TARBALL): release-only $(NODE_EXE) doc
10431042
$(RM) -r $(TARNAME)/tools/osx-pkg.pmdoc
10441043
find $(TARNAME)/deps/v8/test/* -type d ! -regex '.*/test/torque$$' | xargs $(RM) -r
10451044
find $(TARNAME)/deps/v8/test -type f ! -regex '.*/test/torque/.*' | xargs $(RM)
1045+
find $(TARNAME)/deps/zlib/contrib/* -type d ! -regex '.*/contrib/optimizations$$' | xargs $(RM) -r
10461046
find $(TARNAME)/ -name ".eslint*" -maxdepth 2 | xargs $(RM)
10471047
find $(TARNAME)/ -type l | xargs $(RM) # annoying on windows
10481048
tar -cf $(TARNAME).tar $(TARNAME)

0 commit comments

Comments
 (0)