diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-08-27 16:05:32 +0300 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-08-27 16:05:32 +0300 |
| commit | a4e15840b135fc90106647772a733fed72fcd7b6 (patch) | |
| tree | f56c79bffbbd77038f6a29d3b8ebbc9b63e2885f /gui/unpatch-yarn.js | |
| parent | c7cc855e1d081f76ac5bc5c68ab7ea773f1f9c4b (diff) | |
| parent | fbf561034ee6e1ff78a34cd0acf277ff1a6fa11a (diff) | |
| download | mullvadvpn-a4e15840b135fc90106647772a733fed72fcd7b6.tar.xz mullvadvpn-a4e15840b135fc90106647772a733fed72fcd7b6.zip | |
Merge branch 'unpatch-yarn'
Diffstat (limited to 'gui/unpatch-yarn.js')
| -rw-r--r-- | gui/unpatch-yarn.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gui/unpatch-yarn.js b/gui/unpatch-yarn.js new file mode 100644 index 0000000000..0bf85629ac --- /dev/null +++ b/gui/unpatch-yarn.js @@ -0,0 +1,24 @@ +// This is a companion script that reverts the effect of preinstall script in +// `\gui\packages\yarn-fixes`. +// +// The symlink to `\gui\node_modules\node_modules` that fixes the bug, described in +// https://github.com/yarnpkg/yarn/issues/4564, must be removed after node modules installation, +// because circular symlinks cause scripts like electron-builder to crash. + +const path = require('path'); +const fs = require('fs'); + +if (process.platform !== 'win32') { + return; +} + +const symlinkPath = path.join(__dirname, 'node_modules/node_modules'); + +try { + console.log('Removing a symlink to node_modules/node_modules'); + fs.unlinkSync(symlinkPath); +} catch (error) { + if (error.code !== 'ENOENT') { + throw error; + } +} |
