Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
build: Prevent duplication of doc/api folder
  • Loading branch information
isaacs committed Jun 6, 2012
1 parent 463d6ba commit c45522d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -219,9 +219,9 @@ $(TARBALL): node out/doc
exit 1 ; \
fi
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
mkdir -p $(TARNAME)/doc
mkdir -p $(TARNAME)/doc/api
cp doc/node.1 $(TARNAME)/doc/node.1
cp -r out/doc/api $(TARNAME)/doc/api
cp -r out/doc/api/* $(TARNAME)/doc/api/
rm -rf $(TARNAME)/deps/v8/test # too big
rm -rf $(TARNAME)/doc/images # too big
tar -cf $(TARNAME).tar $(TARNAME)
Expand Down

0 comments on commit c45522d

Please sign in to comment.