electron/lib/browser/api/auto-updater.js

6 lines
174 B
JavaScript
Raw Normal View History

2016-04-28 17:21:58 +00:00
if (process.platform === 'win32') {
module.exports = require('./auto-updater/auto-updater-win')
} else {
module.exports = require('./auto-updater/auto-updater-native')
}