2020-03-20 13:28:31 -07:00
|
|
|
'use strict';
|
2018-09-23 00:28:50 +12:00
|
|
|
|
2016-04-28 10:21:58 -07:00
|
|
|
if (process.platform === 'win32') {
|
2020-03-20 13:28:31 -07:00
|
|
|
module.exports = require('@electron/internal/browser/api/auto-updater/auto-updater-win');
|
2016-04-28 10:21:58 -07:00
|
|
|
} else {
|
2020-03-20 13:28:31 -07:00
|
|
|
module.exports = require('@electron/internal/browser/api/auto-updater/auto-updater-native');
|
2016-04-28 10:21:58 -07:00
|
|
|
}
|