diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-04-30 09:43:33 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-08-07 13:51:39 +0200 |
commit | 9e962fb69f0afa12eeec3d2e412648a5e432588c (patch) | |
tree | 5277d4d9e6aebf3ad7bb18fc530507abd945a7e9 /core/Command/App/Install.php | |
parent | a3d30bf4a23f3827103dd3ba5e10c16a58362a80 (diff) | |
download | nextcloud-server-9e962fb69f0afa12eeec3d2e412648a5e432588c.tar.gz nextcloud-server-9e962fb69f0afa12eeec3d2e412648a5e432588c.zip |
Allow to update to nightly
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core/Command/App/Install.php')
-rw-r--r-- | core/Command/App/Install.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Command/App/Install.php b/core/Command/App/Install.php index 41e3e20c9dc..898e39416f3 100644 --- a/core/Command/App/Install.php +++ b/core/Command/App/Install.php @@ -74,7 +74,8 @@ class Install extends Command { return 1; } - $output->writeln($appId . ' installed'); + $appVersion = \OC_App::getAppVersion($appId); + $output->writeln($appId . ' ' . $appVersion . ' installed'); if (!$input->getOption('keep-disabled')) { $appClass = new \OC_App(); |