Skip to content

Commit fe8859a

Browse files
author
Pawel Ulita
committed
bump nodejs to 4.4.2
1 parent 9bddc7a commit fe8859a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/nodejs/install-nodejs.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ function untar() {
3939

4040
if [ ! -d ${destination} ]; then
4141
ctx logger info "Untaring ${tar_archive}"
42-
tar -zxvf ${tar_archive}
42+
tar -xvf ${tar_archive}
4343

4444
ctx logger info "Moving ${inner_name} to ${destination}"
4545
mv ${inner_name} ${destination}
4646
fi
4747
}
4848

4949
TEMP_DIR='/tmp'
50-
NODEJS_TARBALL_NAME='node-v0.10.26-linux-x64.tar.gz'
50+
NODEJS_TARBALL_NAME='node-v4.4.2-linux-x64.tar.xz'
5151

5252
################################
5353
# Directory that will contain:
@@ -58,7 +58,7 @@ NODEJS_BINARIES_PATH=${NODEJS_ROOT}/nodejs-binaries
5858
mkdir -p ${NODEJS_ROOT}
5959

6060
cd ${TEMP_DIR}
61-
download http://nodejs.org/dist/v0.10.26/${NODEJS_TARBALL_NAME} ${NODEJS_TARBALL_NAME}
61+
download https://nodejs.org/dist/v4.4.2/${NODEJS_TARBALL_NAME} ${NODEJS_TARBALL_NAME}
6262
untar ${NODEJS_TARBALL_NAME} ${NODEJS_BINARIES_PATH}
6363

6464
# this runtime property is used by the start-nodecellar-app.sh

0 commit comments

Comments
 (0)