From 2efa42b8537b8a404a0f82d78c5299f098130183 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 10 Jan 2022 22:44:17 +0200 Subject: [PATCH] In rebuild-wekan.sh, use Volta Node and NPM install manager, made with Rust https://volta.sh . Volta uses home directory also with "npm -g install", no sudo needed. Thanks to Volta developers! --- rebuild-wekan.sh | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/rebuild-wekan.sh b/rebuild-wekan.sh index 8dfbdff3a..bd7b56b6b 100755 --- a/rebuild-wekan.sh +++ b/rebuild-wekan.sh @@ -25,20 +25,26 @@ do sudo apt-get install -y build-essential gcc g++ make git curl wget p7zip-full zip unzip unp #curl -fsSL https://deb.nodesource.com/setup_12.x | sudo -E bash - #sudo apt-get install -y nodejs - sudo apt-get install -y npm + #sudo apt-get install -y npm + # Volta Node and NPM install manager, made with Rust https://volta.sh + # Volta uses home directory also with "npm -g install", no sudo needed. + curl https://get.volta.sh | bash + export VOLTA_HOME="$HOME/.volta" + export PATH="$VOLTA_HOME/bin:$PATH" + volta install node@12 # npm nodejs #curl -0 -L https://npmjs.org/install.sh | sudo sh #sudo chown -R $(id -u):$(id -g) $HOME/.npm - sudo npm -g install n - sudo n 12.22.8 - sudo npm -g install npm + #sudo npm -g install n + #sudo n 12.22.8 + #sudo npm -g install npm ## Latest npm with Meteor 2.2 - sudo npm -g install node-gyp + npm -g install node-gyp # Latest fibers for Meteor 2.2 - sudo mkdir -p /usr/local/lib/node_modules/fibers/.node-gyp - sudo npm -g install fibers + #sudo mkdir -p /usr/local/lib/node_modules/fibers/.node-gyp + npm -g install fibers # Install Meteor, if it's not yet installed - sudo npm install -g meteor --unsafe-perm + npm install -g meteor --unsafe-perm #sudo chown -R $(id -u):$(id -g) $HOME/.npm $HOME/.meteor elif [[ "$OSTYPE" == "darwin"* ]]; then echo "macOS";