extension cli: do not try to upgrade bundled plugins

fixes #3227
This commit is contained in:
Andreas Gohr 2020-08-12 12:17:44 +02:00
parent 15b886048c
commit be15e51634
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class cli_plugin_extension extends DokuWiki_CLI_Plugin
$ext->setExtension($extname);
$date = $ext->getInstalledVersion();
$avail = $ext->getLastUpdate();
if ($avail && $avail > $date) {
if ($avail && $avail > $date && !$ext->isBundled()) {
$ok += $this->cmdInstall([$extname]);
}
}