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

6 lines
174 B
JavaScript
Raw Normal View History

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