Skip to content

Commit a3b7747

Browse files
committed
Merge branch 'develop' into wmwragg/one-to-one-chat
2 parents 7615524 + 31dd49f commit a3b7747

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

jenkins.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ npm install
1313
# apparently npm 3.10.3 on node 6.4.0 doesn't upgrade #develop target with npm install unless explicitly asked.
1414
npm install matrix-react-sdk matrix-js-sdk
1515

16+
# install olm. A naive 'npm i ./olm/olm-*.tgz' fails because it uses the url
17+
# 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+
1622
# we may be using a dev branch of react-sdk, in which case we need to build it
1723
(cd node_modules/matrix-react-sdk && npm run build)
1824

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@
9090
"webpack": "^1.12.14"
9191
},
9292
"optionalDependencies": {
93-
"olm": "https://matrix.org/packages/npm/olm/olm-1.1.0.tgz"
93+
"olm": "https://matrix.org/packages/npm/olm/olm-1.2.0.tgz"
9494
}
9595
}

0 commit comments

Comments
 (0)