Upgrade dev bundle Node to 0.10.43.

This commit is contained in:
Ben Newman
2016-03-11 12:39:37 -05:00
parent a5b7bde167
commit 94896b78f4
2 changed files with 5 additions and 7 deletions

View File

@@ -6,17 +6,15 @@ set -u
# When upgrading node versions, also update the values of MIN_NODE_VERSION at
# the top of tools/main.js and tools/server/boot.js, and the text in
# docs/client/full-api/concepts.html and the README in tools/bundler.js.
NODE_VERSION=0.10.41
NODE_VERSION=0.10.43
NODE_URL="https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}.tar.gz"
source "$(dirname $0)/build-dev-bundle-common.sh"
echo CHECKOUT DIR IS "$CHECKOUT_DIR"
echo BUILDING NODE "v$NODE_VERSION" IN "$DIR"
# For now, use our fork with https://github.com/npm/npm/pull/5821
git clone --branch "v${NODE_VERSION}-with-npm-5821" --depth 1 \
https://github.com/meteor/node.git
cd node
rm -rf .git
curl "$NODE_URL" | gzip -d | tar x
cd "node-v${NODE_VERSION}"
./configure --prefix="$DIR"
make -j4
make install PORTABLE=1