balena-cli/build/utils/update.js

50 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-07-27 11:07:05 +00:00
// Generated by CoffeeScript 1.12.7
/*
2017-06-14 21:20:15 +00:00
Copyright 2016-2017 Resin.io
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
var isRoot, notifier, packageJSON, resinUpdateInterval, updateNotifier;
2017-03-22 09:46:06 +00:00
updateNotifier = require('update-notifier');
2017-03-22 09:46:06 +00:00
isRoot = require('is-root');
2017-03-22 09:46:06 +00:00
packageJSON = require('../../package.json');
resinUpdateInterval = 1000 * 60 * 60 * 24 * 1;
2017-03-22 09:46:06 +00:00
if (!isRoot()) {
notifier = updateNotifier({
pkg: packageJSON,
updateCheckInterval: resinUpdateInterval
2017-03-22 09:46:06 +00:00
});
}
2017-03-22 09:46:06 +00:00
exports.hasAvailableUpdate = function() {
return notifier != null;
};
2017-03-22 09:46:06 +00:00
exports.notify = function() {
if (!exports.hasAvailableUpdate()) {
return;
}
notifier.notify({
defer: false
});
if (notifier.update != null) {
return console.log('Notice that you might need administrator privileges depending on your setup\n');
}
};