forked from mirrors/gecko-dev
15 lines
713 B
Bash
15 lines
713 B
Bash
#!/bin/bash
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# This script installs Node v12.
|
|
# XXX For now, this should match the version installed in
|
|
# taskcluster/scripts/misc/repack-node.sh. Later we'll get the ESLint builder
|
|
# to use the linux64-node toolchain directly.
|
|
|
|
wget -O node.xz --progress=dot:mega https://nodejs.org/download/release/v12.22.1/node-v12.22.1-linux-x64.tar.xz
|
|
echo '8b537282c222ae4a40e019a52f769ca27b6640699bdde1510375e8d72da7d041' node.xz | sha256sum -c
|
|
tar -C /usr/local -xJ --strip-components 1 < node.xz
|
|
node -v # verify
|
|
npm -v
|