diff --git a/build/utils/update.js b/build/utils/update.js index 8a7591f9..f5df4263 100644 --- a/build/utils/update.js +++ b/build/utils/update.js @@ -21,7 +21,8 @@ if (!exports.hasAvailableUpdate()) { return; } - return notifier.notify(); + notifier.notify(); + return console.log('Notice that you might need administrator privileges depending on your setup'); }; }).call(this); diff --git a/lib/utils/update.coffee b/lib/utils/update.coffee index 9d4aa8c5..340bd975 100644 --- a/lib/utils/update.coffee +++ b/lib/utils/update.coffee @@ -14,3 +14,4 @@ exports.hasAvailableUpdate = -> exports.notify = -> return if not exports.hasAvailableUpdate() notifier.notify() + console.log('Notice that you might need administrator privileges depending on your setup')