electron/atom/browser/api/lib/auto-updater.coffee

8 lines
260 B
CoffeeScript
Raw Normal View History

switch process.platform
when 'win32'
module.exports = require './auto-updater/auto-updater-win'
when 'darwin'
module.exports = require './auto-updater/auto-updater-mac'
else
throw new Error('auto-updater is not implemented on this platform')