2
0
mirror of https://git.coolaj86.com/coolaj86/telebit-relay.js.git synced 2025-02-23 09:38:03 +00:00

13 lines
329 B
JavaScript
Raw Normal View History

'use strict';
2018-06-14 20:43:57 +00:00
module.exports = function (opts, cb) {
var pkg = opts.package;
var root = opts.root;
//console.log('DEBUG pkg', pkg);
//console.log('DEBUG root', root);
2018-06-14 10:43:25 +00:00
process.nextTick(function () {
cb(null, { message: "upgrade complete" });
});
return { message: "placeholder upgrade: nothing to do yet" };
};