Set n architecture

This commit is contained in:
Bob Mottram 2017-09-14 13:34:22 +01:00
parent 33fe399457
commit 388f3d6168
1 changed files with 5 additions and 1 deletions

View File

@ -44,12 +44,15 @@ NPM_VERSION='4.0.5'
NODEJS_INSTALLED_APPS_FILE=$HOME/.nodejs-apps
function get_npm_arch {
N_ARCH='x86'
NPM_ARCH='ia32'
if [[ $ARCHITECTURE == 'arm'* ]]; then
NPM_ARCH='armv7l'
N_ARCH='arm'
fi
if [[ $ARCHITECTURE == 'x86_64' || $ARCHITECTURE == 'amd64' ]]; then
NPM_ARCH='x64'
N_ARCH='x64'
fi
}
@ -90,7 +93,8 @@ function mesh_install_nodejs {
# update from the old debian nodejs version
get_npm_arch
chroot "$rootdir" npm install --arch=$NPM_ARCH node@$NODEJS_VERSION -g
chroot "$rootdir" npm install --arch=$NPM_ARCH -g n@${NODEJS_N_VERSION} --save
chroot "$rootdir" n --arch $N_ARCH ${NODEJS_VERSION}
}
function remove_nodejs {