We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0eb699 commit 835d13cCopy full SHA for 835d13c
jenkins.sh
@@ -13,8 +13,11 @@ npm install
13
# apparently npm 3.10.3 on node 6.4.0 doesn't upgrade #develop target with npm install unless explicitly asked.
14
npm install matrix-react-sdk matrix-js-sdk
15
16
-# install olm
17
-npm install ./olm/olm-*.tgz
+# install olm. A naive 'npm i ./olm/olm-*.tgz' fails because it uses the url
+# from our package.json (or even matrix-js-sdk's) in preference.
18
+tar -C olm -xz < olm/olm-*.tgz
19
+rm -r node_modules/olm
20
+cp -r olm/package node_modules/olm
21
22
# we may be using a dev branch of react-sdk, in which case we need to build it
23
(cd node_modules/matrix-react-sdk && npm run build)
0 commit comments