File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,15 @@ function untar() {
39
39
40
40
if [ ! -d ${destination} ]; then
41
41
ctx logger info " Untaring ${tar_archive} "
42
- tar -zxvf ${tar_archive}
42
+ tar -xvf ${tar_archive}
43
43
44
44
ctx logger info " Moving ${inner_name} to ${destination} "
45
45
mv ${inner_name} ${destination}
46
46
fi
47
47
}
48
48
49
49
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 '
51
51
52
52
# ###############################
53
53
# Directory that will contain:
@@ -58,7 +58,7 @@ NODEJS_BINARIES_PATH=${NODEJS_ROOT}/nodejs-binaries
58
58
mkdir -p ${NODEJS_ROOT}
59
59
60
60
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}
62
62
untar ${NODEJS_TARBALL_NAME} ${NODEJS_BINARIES_PATH}
63
63
64
64
# this runtime property is used by the start-nodecellar-app.sh
You can’t perform that action at this time.
0 commit comments