From 87401ad569ccc73142c354c2ea643855fa4dbdfd Mon Sep 17 00:00:00 2001 From: Paulo Castro Date: Tue, 30 Apr 2019 16:38:01 +0100 Subject: [PATCH] Replace 'npm' upgrade notifier message with INSTALL.md URL Change-type: patch Signed-off-by: Paulo Castro --- lib/utils/update.ts | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/lib/utils/update.ts b/lib/utils/update.ts index a74be8df..58257462 100644 --- a/lib/utils/update.ts +++ b/lib/utils/update.ts @@ -1,5 +1,5 @@ /* -Copyright 2016-2017 Balena +Copyright 2016-2019 Balena Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -25,26 +25,26 @@ const balenaUpdateInterval = 1000 * 60 * 60 * 24 * 1; let notifier: UpdateNotifier.UpdateNotifier; -// `update-notifier` creates files to make the next -// running time ask for updated, however this can lead -// to ugly EPERM issues if those files are created as root. -if (!isRoot()) { - notifier = UpdateNotifier({ - pkg: packageJSON, - updateCheckInterval: balenaUpdateInterval, - }); -} - export function notify() { if (!notifier) { - return; + // `update-notifier` creates files to make the next + // running time ask for updated, however this can lead + // to ugly EPERM issues if those files are created as root. + if (isRoot()) { + return; + } else { + notifier = UpdateNotifier({ + pkg: packageJSON, + updateCheckInterval: balenaUpdateInterval, + }); + } } - - notifier.notify({ defer: false }); - - if (notifier.update != null) { - console.log( - 'Notice that you might need administrator privileges depending on your setup\n', - ); + const up = notifier.update; + if (up) { + notifier.notify({ + defer: false, + message: `Update available ${up.current} → ${up.latest}\n +https://github.com/balena-io/balena-cli/blob/master/INSTALL.md`, + }); } }