change plugin delimiter

This commit is contained in:
Arthur de Moulins
2020-06-24 17:20:34 +02:00
parent aaa6653bcd
commit 2a37909341
2 changed files with 7 additions and 4 deletions

View File

@@ -29,7 +29,7 @@ class InstallCommand extends Command
mkdir($pluginsDir);
}
foreach (explode(' ', $plugins) as $key => $plugin) {
foreach (explode(';', $plugins) as $key => $plugin) {
$plugin = trim($plugin);
$repo = $plugin;
$branch = 'master';