File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
4949TEMP_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
5858mkdir -p ${NODEJS_ROOT}
5959
6060cd ${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}
6262untar ${NODEJS_TARBALL_NAME} ${NODEJS_BINARIES_PATH}
6363
6464# this runtime property is used by the start-nodecellar-app.sh
You can’t perform that action at this time.
0 commit comments