From 716f5bc66bd78e5778de1c8e2c087d779de39fea Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 16 Jan 2012 18:52:36 -0800 Subject: [PATCH] Add make dist-upload --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 3652db3..3b152d2 100644 --- a/Makefile +++ b/Makefile @@ -171,6 +171,11 @@ $(TARBALL): node out/doc rm -rf $(TARNAME) gzip -f -9 $(TARNAME).tar +dist-upload: $(TARBALL) $(PKG) + ssh node@nodejs.org mkdir -p web/nodejs.org/dist/$(VERSION) + scp $(TARBALL) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARBALL) + scp $(PKG) node@nodejs.org:~/web/nodejs.org/dist/$(VERSION)/$(TARNAME).pkg + bench: benchmark/http_simple_bench.sh -- 2.7.4