-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: remove upload targets from makefile
The targets upload to nodejs.org but that is the joyent/node website. PR-URL: #262 Reviewed-By: Bert Belder <[email protected]>
- Loading branch information
1 parent
e3f8610
commit 73b9323
Showing
1 changed file
with
0 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -222,16 +222,6 @@ email.md: ChangeLog tools/email-footer.md | |
blog.html: email.md | ||
cat $< | ./$(NODE_EXE) tools/doc/node_modules/.bin/marked > $@ | ||
|
||
website-upload: doc | ||
rsync -r out/doc/ [email protected]:~/web/nodejs.org/ | ||
ssh [email protected] '\ | ||
rm -f ~/web/nodejs.org/dist/latest &&\ | ||
ln -s $(VERSION) ~/web/nodejs.org/dist/latest &&\ | ||
rm -f ~/web/nodejs.org/docs/latest &&\ | ||
ln -s $(VERSION) ~/web/nodejs.org/docs/latest &&\ | ||
rm -f ~/web/nodejs.org/dist/node-latest.tar.gz &&\ | ||
ln -s $(VERSION)/node-$(VERSION).tar.gz ~/web/nodejs.org/dist/node-latest.tar.gz' | ||
|
||
docopen: out/doc/api/all.html | ||
-google-chrome out/doc/api/all.html | ||
|
||
|
@@ -362,11 +352,6 @@ $(PKGSRC): release-only | |
|
||
pkgsrc: $(PKGSRC) | ||
|
||
dist-upload: $(TARBALL) $(PKG) | ||
ssh [email protected] mkdir -p web/nodejs.org/dist/$(VERSION) | ||
scp $(TARBALL) [email protected]:~/web/nodejs.org/dist/$(VERSION)/$(TARBALL) | ||
scp $(PKG) [email protected]:~/web/nodejs.org/dist/$(VERSION)/$(TARNAME).pkg | ||
|
||
wrkclean: | ||
$(MAKE) -C tools/wrk/ clean | ||
rm tools/wrk/wrk | ||
|