diff --git a/src/firstRun/darwin.js b/src/firstRun/darwin.js deleted file mode 100644 index c9ebd99..0000000 --- a/src/firstRun/darwin.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./stub'); \ No newline at end of file diff --git a/src/firstRun/index.js b/src/firstRun/index.js index c7fdb7b..b02f9ee 100644 --- a/src/firstRun/index.js +++ b/src/firstRun/index.js @@ -1,2 +1,9 @@ -// Stub for now at least -module.exports = require('./' + process.platform); \ No newline at end of file +// Depends on platform +switch (process.platform) { + case 'win32': + module.exports = require('./win32.js'); + break; + + default: + module.exports = require('./stub.js'); +} \ No newline at end of file diff --git a/src/firstRun/linux.js b/src/firstRun/linux.js deleted file mode 100644 index c9ebd99..0000000 --- a/src/firstRun/linux.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./stub'); \ No newline at end of file