Merge pull request #2518 from vector-im/rav/ignore_olm_if_missing

Avoid errors if olm is missing
pull/2528/head
Richard van der Hoff 2016-10-27 10:28:27 +01:00 committed by GitHub
commit 5e84a6c39e
1 changed files with 9 additions and 0 deletions

View File

@ -102,3 +102,12 @@ module.exports = {
],
devtool: 'source-map'
};
// olm is an optional dependency. Ignore it if it's not installed, to avoid a
// scary-looking error.
try {
require('olm');
} catch (e) {
console.log("Olm is not installed; not shipping it");
delete(module.exports.entry["olm"]);
}