| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent ae8d436 commit a69ab27
96 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,6 +12,8 @@ tmp/ | |||
| 12 | 12 | test/tmp*/ | |
| 13 | 13 | iojs | |
| 14 | 14 | iojs_g | |
| 15 | + node | ||
| 16 | + node_g | ||
| 15 | 17 | *.swp | |
| 16 | 18 | .benchmark_reports | |
| 17 | 19 | /.project | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ FLAGS=${.MAKEFLAGS:C/\-J ([0-9]+,?)+//W} | |||
| 4 | 4 | all: .DEFAULT | |
| 5 | 5 | .DEFAULT: | |
| 6 | 6 | @which gmake > /dev/null 2>&1 ||\ | |
| 7 | - (echo "GMake is required for io.js to build.\ | ||
| 7 | + (echo "GMake is required for node.js to build.\ | ||
| 8 | 8 | Install and try again" && exit 1) | |
| 9 | 9 | @gmake ${.FLAGS} ${.TARGETS} | |
| 10 | 10 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - # io.js Collaborator Guide | ||
| 1 | + # Node.js Collaborator Guide | ||
| 2 | 2 | ||
| 3 | 3 | **Contents** | |
| 4 | 4 | ||
@@ -9,7 +9,7 @@ | |||
| 9 | 9 | - [Technical HOWTO](#technical-howto) | |
| 10 | 10 | - [I Just Made a Mistake](#i-just-made-a-mistake) | |
| 11 | 11 | ||
| 12 | - This document contains information for Collaborators of the io.js | ||
| 12 | + This document contains information for Collaborators of the Node.js | ||
| 13 | 13 | project regarding maintaining the code, documentation and issues. | |
| 14 | 14 | ||
| 15 | 15 | Collaborators should be familiar with the guidelines for new | |
@@ -20,24 +20,24 @@ understand the project governance model as outlined in | |||
| 20 | 20 | ## Issues and Pull Requests | |
| 21 | 21 | ||
| 22 | 22 | Courtesy should always be shown to individuals submitting issues and | |
| 23 | - pull requests to the io.js project. | ||
| 23 | + pull requests to the Node.js project. | ||
| 24 | 24 | ||
| 25 | 25 | Collaborators should feel free to take full responsibility for | |
| 26 | 26 | managing issues and pull requests they feel qualified to handle, as | |
| 27 | 27 | long as this is done while being mindful of these guidelines, the | |
| 28 | 28 | opinions of other Collaborators and guidance of the TC. | |
| 29 | 29 | ||
| 30 | 30 | Collaborators may **close** any issue or pull request they believe is | |
| 31 | - not relevant for the future of the io.js project. Where this is | ||
| 31 | + not relevant for the future of the Node.js project. Where this is | ||
| 32 | 32 | unclear, the issue should be left open for several days to allow for | |
| 33 | - additional discussion. Where this does not yield input from io.js | ||
| 33 | + additional discussion. Where this does not yield input from Node.js | ||
| 34 | 34 | Collaborators or additional evidence that the issue has relevance, the | |
| 35 | 35 | issue may be closed. Remember that issues can always be re-opened if | |
| 36 | 36 | necessary. | |
| 37 | 37 | ||
| 38 | 38 | ## Accepting Modifications | |
| 39 | 39 | ||
| 40 | - All modifications to the io.js code and documentation should be | ||
| 40 | + All modifications to the Node.js code and documentation should be | ||
| 41 | 41 | performed via GitHub pull requests, including modifications by | |
| 42 | 42 | Collaborators and TC members. | |
| 43 | 43 | ||
@@ -101,7 +101,7 @@ information regarding the change process: | |||
| 101 | 101 | appropriate. | |
| 102 | 102 | ||
| 103 | 103 | See the commit log for examples such as | |
| 104 | - [this one](https://github.com/nodejs/io.js/commit/b636ba8186) if unsure | ||
| 104 | + [this one](https://github.com/nodejs/node/commit/b636ba8186) if unsure | ||
| 105 | 105 | exactly how to format your commit messages. | |
| 106 | 106 | ||
| 107 | 107 | Additionally: | |
@@ -137,7 +137,7 @@ $ git merge --ff-only origin/master | |||
| 137 | 137 | Apply external patches | |
| 138 | 138 | ||
| 139 | 139 | ```text | |
| 140 | - $ curl -L https://github.com/nodejs/io.js/pull/xxx.patch | git am --whitespace=fix | ||
| 140 | + $ curl -L https://github.com/nodejs/node/pull/xxx.patch | git am --whitespace=fix | ||
| 141 | 141 | ``` | |
| 142 | 142 | ||
| 143 | 143 | Check and re-review the changes | |
@@ -223,7 +223,7 @@ With `git`, there's a way to override remote trees by force pushing | |||
| 223 | 223 | (`git push -f`). This should generally be seen as forbidden (since | |
| 224 | 224 | you're rewriting history on a repository other people are working | |
| 225 | 225 | against) but is allowed for simpler slip-ups such as typos in commit | |
| 226 | - messages. However, you are only allowed to force push to any io.js | ||
| 226 | + messages. However, you are only allowed to force push to any Node.js | ||
| 227 | 227 | branch within 10 minutes from your original push. If someone else | |
| 228 | 228 | pushes to the branch or the 10 minute period passes, consider the | |
| 229 | 229 | commit final. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,10 +1,10 @@ | |||
| 1 | - # Contributing to io.js | ||
| 1 | + # Contributing to Node.js | ||
| 2 | 2 | ||
| 3 | 3 | ## Issue Contributions | |
| 4 | 4 | ||
| 5 | 5 | When opening new issues or commenting on existing issues on this repository | |
| 6 | 6 | please make sure discussions are related to concrete technical issues with the | |
| 7 | - io.js software. | ||
| 7 | + Node.js software. | ||
| 8 | 8 | ||
| 9 | 9 | Discussion of non-technical topics including subjects like intellectual | |
| 10 | 10 | property, trademark and high level project questions should move to the | |
@@ -13,7 +13,7 @@ instead. | |||
| 13 | 13 | ||
| 14 | 14 | ## Code Contributions | |
| 15 | 15 | ||
| 16 | - The io.js project has an open governance model and welcomes new contributors. | ||
| 16 | + The Node.js project has an open governance model and welcomes new contributors. | ||
| 17 | 17 | Individuals making significant and valuable contributions are made | |
| 18 | 18 | _Collaborators_ and given commit-access to the project. See the | |
| 19 | 19 | [GOVERNANCE.md](./GOVERNANCE.md) document for more information about how this | |
@@ -23,13 +23,13 @@ This document will guide you through the contribution process. | |||
| 23 | 23 | ||
| 24 | 24 | ### Step 1: Fork | |
| 25 | 25 | ||
| 26 | - Fork the project [on GitHub](https://github.com/nodejs/io.js) and check out your | ||
| 26 | + Fork the project [on GitHub](https://github.com/nodejs/node) and check out your | ||
| 27 | 27 | copy locally. | |
| 28 | 28 | ||
| 29 | 29 | ```text | |
| 30 | - $ git clone git@github.com:username/io.js.git | ||
| 31 | - $ cd io.js | ||
| 32 | - $ git remote add upstream git://github.com/nodejs/io.js.git | ||
| 30 | + $ git clone git@github.com:username/node.git | ||
| 31 | + $ cd node | ||
| 32 | + $ git remote add upstream git://github.com/nodejs/node.git | ||
| 33 | 33 | ``` | |
| 34 | 34 | ||
| 35 | 35 | #### Which branch? | |
@@ -48,14 +48,14 @@ always welcome but API or behavioral changes to modules at stability level 3 | |||
| 48 | 48 | ||
| 49 | 49 | #### Dependencies | |
| 50 | 50 | ||
| 51 | - io.js has several bundled dependencies in the *deps/* and the *tools/* | ||
| 51 | + Node.js has several bundled dependencies in the *deps/* and the *tools/* | ||
| 52 | 52 | directories that are not part of the project proper. Any changes to files | |
| 53 | 53 | in those directories or its subdirectories should be sent to their respective | |
| 54 | 54 | projects. Do not send your patch to us, we cannot accept it. | |
| 55 | 55 | ||
| 56 | 56 | In case of doubt, open an issue in the | |
| 57 | - [issue tracker](https://github.com/nodejs/io.js/issues/) or contact one of the | ||
| 58 | - [project Collaborators](https://github.com/nodejs/io.js/#current-project-team-members). | ||
| 57 | + [issue tracker](https://github.com/nodejs/node/issues/) or contact one of the | ||
| 58 | + [project Collaborators](https://github.com/nodejs/node/#current-project-team-members). | ||
| 59 | 59 | ([IRC](http://webchat.freenode.net/?channels=io.js) is often the best medium.) Especially do so if you plan to work on something big. Nothing is more | |
| 60 | 60 | frustrating than seeing your hard work go to waste because your vision | |
| 61 | 61 | does not align with the project team. | |
@@ -139,10 +139,10 @@ can use this syntax to run it exactly as the test harness would: | |||
| 139 | 139 | $ python tools/test.py -v --mode=release parallel/test-stream2-transform | |
| 140 | 140 | ``` | |
| 141 | 141 | ||
| 142 | - You can run tests directly with iojs: | ||
| 142 | + You can run tests directly with node: | ||
| 143 | 143 | ||
| 144 | 144 | ```text | |
| 145 | - $ ./iojs ./test/parallel/test-stream2-transform.js | ||
| 145 | + $ ./node ./test/parallel/test-stream2-transform.js | ||
| 146 | 146 | ``` | |
| 147 | 147 | ||
| 148 | 148 | Remember to recompile with `make -j8` in between test runs if you change | |
@@ -154,7 +154,7 @@ core modules. | |||
| 154 | 154 | $ git push origin my-feature-branch | |
| 155 | 155 | ``` | |
| 156 | 156 | ||
| 157 | - Go to https://github.com/yourusername/io.js and select your feature branch. | ||
| 157 | + Go to https://github.com/yourusername/node and select your feature branch. | ||
| 158 | 158 | Click the 'Pull Request' button and fill out the form. | |
| 159 | 159 | ||
| 160 | 160 | Pull requests are usually reviewed within a few days. If there are comments | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,11 +1,11 @@ | |||
| 1 | - # io.js Project Governance | ||
| 1 | + # Node.js Project Governance | ||
| 2 | 2 | ||
| 3 | 3 | ## Technical Committee | |
| 4 | 4 | ||
| 5 | - The io.js project is jointly governed by a Technical Committee (TC) | ||
| 5 | + The Node.js project is jointly governed by a Technical Steering Committee (TSC) | ||
| 6 | 6 | which is responsible for high-level guidance of the project. | |
| 7 | 7 | ||
| 8 | - The TC has final authority over this project including: | ||
| 8 | + The TSC has final authority over this project including: | ||
| 9 | 9 | ||
| 10 | 10 | * Technical direction | |
| 11 | 11 | * Project governance and process (including this policy) | |
@@ -14,17 +14,17 @@ The TC has final authority over this project including: | |||
| 14 | 14 | * Conduct guidelines | |
| 15 | 15 | * Maintaining the list of additional Collaborators | |
| 16 | 16 | ||
| 17 | - Initial membership invitations to the TC were given to individuals who | ||
| 18 | - had been active contributors to io.js, and who have significant | ||
| 19 | - experience with the management of the io.js project. Membership is | ||
| 17 | + Initial membership invitations to the TSC were given to individuals who | ||
| 18 | + had been active contributors to Node.js, and who have significant | ||
| 19 | + experience with the management of the Node.js project. Membership is | ||
| 20 | 20 | expected to evolve over time according to the needs of the project. | |
| 21 | 21 | ||
| 22 | - For the current list of TC members, see the project | ||
| 22 | + For the current list of TSC members, see the project | ||
| 23 | 23 | [README.md](./README.md#current-project-team-members). | |
| 24 | 24 | ||
| 25 | 25 | ## Collaborators | |
| 26 | 26 | ||
| 27 | - The [iojs/io.js](https://github.com/nodejs/io.js) GitHub repository is | ||
| 27 | + The [nodejs/node](https://github.com/nodejs/node) GitHub repository is | ||
| 28 | 28 | maintained by the TC and additional Collaborators who are added by the | |
| 29 | 29 | TC on an ongoing basis. | |
| 30 | 30 | ||
@@ -37,7 +37,7 @@ _Note:_ If you make a significant contribution and are not considered | |||
| 37 | 37 | for commit-access, log an issue or contact a TC member directly and it | |
| 38 | 38 | will be brought up in the next TC meeting. | |
| 39 | 39 | ||
| 40 | - Modifications of the contents of the iojs/io.js repository are made on | ||
| 40 | + Modifications of the contents of the nodejs/node repository are made on | ||
| 41 | 41 | a collaborative basis. Anybody with a GitHub account may propose a | |
| 42 | 42 | modification via pull request and it will be considered by the project | |
| 43 | 43 | Collaborators. All pull requests must be reviewed and accepted by a | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | - io.js is licensed for use as follows: | ||
| 1 | + Node.js is licensed for use as follows: | ||
| 2 | 2 | ||
| 3 | 3 | """ | |
| 4 | - Copyright io.js contributors. All rights reserved. | ||
| 4 | + Copyright Node.js contributors. All rights reserved. | ||
| 5 | 5 | ||
| 6 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy | |
| 7 | 7 | of this software and associated documentation files (the "Software"), to | |
@@ -22,7 +22,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | |||
| 22 | 22 | IN THE SOFTWARE. | |
| 23 | 23 | """ | |
| 24 | 24 | ||
| 25 | - This license applies to parts of io.js originating from the | ||
| 25 | + This license applies to parts of Node.js originating from the | ||
| 26 | 26 | https://github.com/joyent/node repository: | |
| 27 | 27 | ||
| 28 | 28 | """ | |
@@ -46,10 +46,10 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | |||
| 46 | 46 | IN THE SOFTWARE. | |
| 47 | 47 | """ | |
| 48 | 48 | ||
| 49 | - The io.js license applies to all parts of io.js that are not externally | ||
| 49 | + The Node.js license applies to all parts of Node.js that are not externally | ||
| 50 | 50 | maintained libraries. | |
| 51 | 51 | ||
| 52 | - The externally maintained libraries used by io.js are: | ||
| 52 | + The externally maintained libraries used by Node.js are: | ||
| 53 | 53 | ||
| 54 | 54 | - V8, located at deps/v8. V8's license follows: | |
| 55 | 55 | """ | |
@@ -612,7 +612,7 @@ The externally maintained libraries used by io.js are: | |||
| 612 | 612 | included for use in the npm website and documentation, | |
| 613 | 613 | used with permission. | |
| 614 | 614 | ||
| 615 | - This program uses several io.js modules contained in the node_modules/ | ||
| 615 | + This program uses several Node.js modules contained in the node_modules/ | ||
| 616 | 616 | subdirectory, according to the terms of their respective licenses. | |
| 617 | 617 | """ | |
| 618 | 618 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,17 +5,17 @@ PYTHON ?= python | |||
| 5 | 5 | DESTDIR ?= | |
| 6 | 6 | SIGN ?= | |
| 7 | 7 | PREFIX ?= /usr/local | |
| 8 | - STAGINGSERVER ?= iojs-www | ||
| 8 | + STAGINGSERVER ?= node-www | ||
| 9 | 9 | ||
| 10 | 10 | OSTYPE := $(shell uname -s | tr '[A-Z]' '[a-z]') | |
| 11 | 11 | ||
| 12 | 12 | # Determine EXEEXT | |
| 13 | 13 | EXEEXT := $(shell $(PYTHON) -c \ | |
| 14 | 14 | "import sys; print('.exe' if sys.platform == 'win32' else '')") | |
| 15 | 15 | ||
| 16 | - NODE ?= ./iojs$(EXEEXT) | ||
| 17 | - NODE_EXE = iojs$(EXEEXT) | ||
| 18 | - NODE_G_EXE = iojs_g$(EXEEXT) | ||
| 16 | + NODE ?= ./node$(EXEEXT) | ||
| 17 | + NODE_EXE = node$(EXEEXT) | ||
| 18 | + NODE_G_EXE = node_g$(EXEEXT) | ||
| 19 | 19 | ||
| 20 | 20 | # Flags for packaging. | |
| 21 | 21 | BUILD_DOWNLOAD_FLAGS ?= --download=all | |
@@ -267,7 +267,7 @@ ifeq ($(DESTCPU),ia32) | |||
| 267 | 267 | override DESTCPU=x86 | |
| 268 | 268 | endif | |
| 269 | 269 | ||
| 270 | - TARNAME=iojs-$(FULLVERSION) | ||
| 270 | + TARNAME=node-$(FULLVERSION) | ||
| 271 | 271 | TARBALL=$(TARNAME).tar | |
| 272 | 272 | BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH) | |
| 273 | 273 | BINARYTAR=$(BINARYNAME).tar | |
@@ -311,11 +311,11 @@ $(PKG): release-only | |||
| 311 | 311 | $(MAKE) install V=$(V) DESTDIR=$(PKGDIR) | |
| 312 | 312 | SIGN="$(CODESIGN_CERT)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh | |
| 313 | 313 | cat tools/osx-pkg.pmdoc/index.xml.tmpl \ | |
| 314 | - | sed -E "s/\\{iojsversion\\}/$(FULLVERSION)/g" \ | ||
| 314 | + | sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \ | ||
| 315 | 315 | | sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \ | |
| 316 | 316 | > tools/osx-pkg.pmdoc/index.xml | |
| 317 | 317 | $(PACKAGEMAKER) \ | |
| 318 | - --id "org.iojs.pkg" \ | ||
| 318 | + --id "org.node.pkg" \ | ||
| 319 | 319 | --doc tools/osx-pkg.pmdoc \ | |
| 320 | 320 | --out $(PKG) | |
| 321 | 321 | SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh | |
@@ -324,13 +324,13 @@ pkg: $(PKG) | |||
| 324 | 324 | ||
| 325 | 325 | pkg-upload: pkg | |
| 326 | 326 | ssh $(STAGINGSERVER) "mkdir -p staging/$(DISTTYPEDIR)/$(FULLVERSION)" | |
| 327 | - scp -p iojs-$(FULLVERSION).pkg $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).pkg | ||
| 328 | - ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).pkg.done" | ||
| 327 | + scp -p node-$(FULLVERSION).pkg $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).pkg | ||
| 328 | + ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).pkg.done" | ||
| 329 | 329 | ||
| 330 | 330 | $(TARBALL): release-only $(NODE_EXE) doc | |
| 331 | 331 | git checkout-index -a -f --prefix=$(TARNAME)/ | |
| 332 | 332 | mkdir -p $(TARNAME)/doc/api | |
| 333 | - cp doc/iojs.1 $(TARNAME)/doc/iojs.1 | ||
| 333 | + cp doc/node.1 $(TARNAME)/doc/node.1 | ||
| 334 | 334 | cp -r out/doc/api/* $(TARNAME)/doc/api/ | |
| 335 | 335 | rm -rf $(TARNAME)/deps/v8/{test,samples,tools/profviz} # too big | |
| 336 | 336 | rm -rf $(TARNAME)/doc/images # too big | |
@@ -350,11 +350,11 @@ tar: $(TARBALL) | |||
| 350 | 350 | ||
| 351 | 351 | tar-upload: tar | |
| 352 | 352 | ssh $(STAGINGSERVER) "mkdir -p staging/$(DISTTYPEDIR)/$(FULLVERSION)" | |
| 353 | - scp -p iojs-$(FULLVERSION).tar.gz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).tar.gz | ||
| 354 | - ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).tar.gz.done" | ||
| 353 | + scp -p node-$(FULLVERSION).tar.gz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.gz | ||
| 354 | + ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.gz.done" | ||
| 355 | 355 | ifeq ($(XZ), 0) | |
| 356 | - scp -p iojs-$(FULLVERSION).tar.xz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).tar.xz | ||
| 357 | - ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION).tar.xz.done" | ||
| 356 | + scp -p node-$(FULLVERSION).tar.xz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.xz | ||
| 357 | + ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.xz.done" | ||
| 358 | 358 | endif | |
| 359 | 359 | ||
| 360 | 360 | doc-upload: tar | |
@@ -415,11 +415,11 @@ binary: $(BINARYTAR) | |||
| 415 | 415 | ||
| 416 | 416 | binary-upload: binary | |
| 417 | 417 | ssh $(STAGINGSERVER) "mkdir -p staging/$(DISTTYPEDIR)/$(FULLVERSION)" | |
| 418 | - scp -p iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz | ||
| 419 | - ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz.done" | ||
| 418 | + scp -p node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz | ||
| 419 | + ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz.done" | ||
| 420 | 420 | ifeq ($(XZ), 0) | |
| 421 | - scp -p iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz | ||
| 422 | - ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/iojs-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz.done" | ||
| 421 | + scp -p node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz $(STAGINGSERVER):staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz | ||
| 422 | + ssh $(STAGINGSERVER) "touch staging/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz.done" | ||
| 423 | 423 | endif | |
| 424 | 424 | ||
| 425 | 425 | haswrk=$(shell which wrk > /dev/null 2>&1; echo $$?) | |
| Back | FazBrowse Home | New Git URL |
0 commit comments