summaryrefslogtreecommitdiffstats
path: root/snapcraft.yaml
diff options
context:
space:
mode:
authorLauri Ojansivu <x@xet7.org>2017-12-20 14:11:41 +0200
committerLauri Ojansivu <x@xet7.org>2017-12-20 14:11:41 +0200
commit0c15048bdd1da5928525585b1d24c5dbe8a68bbc (patch)
tree2ece91b977673cddb28566c29d60eaf065b531a1 /snapcraft.yaml
parent74877fd10d083a5ebd19d17128d26306426f1204 (diff)
downloadwekan-0c15048bdd1da5928525585b1d24c5dbe8a68bbc.tar.gz
wekan-0c15048bdd1da5928525585b1d24c5dbe8a68bbc.tar.bz2
wekan-0c15048bdd1da5928525585b1d24c5dbe8a68bbc.zip
Use Node 4.6.7. Add paxctl fix to snap.
Diffstat (limited to 'snapcraft.yaml')
-rw-r--r--snapcraft.yaml7
1 files changed, 5 insertions, 2 deletions
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 18e06e72..18b980f8 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -70,7 +70,7 @@ parts:
wekan:
source: .
plugin: nodejs
- node-engine: 4.8.6
+ node-engine: 4.8.7
node-packages:
- n
- npm@4.6.1
@@ -84,11 +84,14 @@ parts:
- capnproto
- npm
- curl
+ - paxctl
prepare: |
echo "Cleaning environment first"
rm -rf ~/.meteor ~/.npm /usr/local/lib/node_modules
echo "Installing node"
- n 4.8.6
+ n 4.8.7
+ echo "Applying paxctl fix for alpine linux: https://github.com/wekan/wekan/issues/1303"
+ paxctl -mC `which node`
echo "Installing meteor"
curl https://install.meteor.com/ -o install_meteor.sh
sed -i "s|RELEASE=.*|RELEASE=\"1.4.4.1\"|g" install_meteor.sh