From cb909cda97c7ea950dd0862340d6369109c971e7 Mon Sep 17 00:00:00 2001
From: Morris Jobke <hey@morrisjobke.de>
Date: Tue, 12 May 2015 18:02:31 +0200
Subject: [PATCH] Add info message for upgrade of an 3rdparty app

---
 core/command/upgrade.php | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/core/command/upgrade.php b/core/command/upgrade.php
index 6d01288a404..7f5d943bb8b 100644
--- a/core/command/upgrade.php
+++ b/core/command/upgrade.php
@@ -130,6 +130,9 @@ class Upgrade extends Command {
 			$updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use($output) {
 				$output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>');
 			});
+			$updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
+				$output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
+			});
 			$updater->listen('\OC\Updater', 'repairWarning', function ($app) use($output) {
 				$output->writeln('<error>Repair warning: ' . $app . '</error>');
 			});
-- 
GitLab