Check the version before building tarball

I keep forgetting to do this.  It's such a stupid thing.
This commit is contained in:
isaacs
2012-02-07 15:41:21 -08:00
parent 986785c9d2
commit 349cab0b48

View File

@@ -178,6 +178,15 @@ $(PKG):
--out $(PKG)
$(TARBALL): node out/doc
@if [ $(shell ./node --version) = "$(VERSION)" ]; then \
exit 0; \
else \
echo "" >&2 ; \
echo "$(shell ./node --version) doesn't match $(VERSION)." >&2 ; \
echo "Did you remember to update src/node_version.cc?" >&2 ; \
echo "" >&2 ; \
exit 1 ; \
fi
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -
mkdir -p $(TARNAME)/doc
cp doc/node.1 $(TARNAME)/doc/node.1