diff --git a/src/autoStart/stub.js b/src/autoStart/stub.js index 42f9545..69d4b90 100644 --- a/src/autoStart/stub.js +++ b/src/autoStart/stub.js @@ -1,5 +1,5 @@ // Stub (Darwin) -exports.install = (callback) => callback(); -exports.update = (callback) => callback(); -exports.uninstall = (callback) => callback(); -exports.isInstalled = (callback) => callback(false); \ No newline at end of file +exports.install = (c) => c(); +exports.update = (c) => c(); +exports.uninstall = (c) => c(); +exports.isInstalled = (c) => c(false); \ No newline at end of file