We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07d60b2 commit d7ba65eCopy full SHA for d7ba65e
bin/commands/runs.js
@@ -328,6 +328,11 @@ module.exports = function run(args, rawArgs) {
328
pkg,
329
updateCheckInterval: 1000 * 60 * 60 * 24 * 7,
330
});
331
+
332
+ if (!notifier.disabled && Date.now() - notifier.config.get('lastUpdateCheck') < 50) {
333
+ notifier.config.set('lastUpdateCheck', 0);
334
+ notifier.check();
335
+ }
336
337
if (notifier.update && notifier.update.current !== notifier.update.latest) {
338
notifier.config.set('update', notifier.update);
0 commit comments