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