Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordizzy <diosmosis@users.noreply.github.com>2022-03-12 20:46:06 +0300
committerGitHub <noreply@github.com>2022-03-12 20:46:06 +0300
commitb183ce903f3e24c97ad929c77aff99e1ef93ab11 (patch)
tree75c338cd5f55a1e3d3cc33932fd60bb85c34bcd4 /plugins/CoreVue
parente45ca4ce04f5898d063f8ece4163cc52850c8e76 (diff)
Add MatomoUrl.parse() method (#18927)
Diffstat (limited to 'plugins/CoreVue')
-rw-r--r--plugins/CoreVue/Commands/Build.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/CoreVue/Commands/Build.php b/plugins/CoreVue/Commands/Build.php
index 8a2881ac49..a021f0de69 100644
--- a/plugins/CoreVue/Commands/Build.php
+++ b/plugins/CoreVue/Commands/Build.php
@@ -170,7 +170,7 @@ class Build extends ConsoleCommand
$vueIndexFile = $vueDir . '/src/index.ts';
if (!is_file($vueIndexFile)) {
- $logger->warning("NOTE: Plugin {plugin} has a vue folder but no webpack config, cannot build it.", ['plugin' => $plugin]);
+ $logger->warning("NOTE: Plugin {plugin} has a vue folder but no index.ts, cannot build it.", ['plugin' => $plugin]);
continue;
}