浏览代码

Arreglo TagVendorsCommand, se cambio el lugar de asignacion

Luciano Andrade 7 年之前
父节点
当前提交
fc045718c2
共有 1 个文件被更改,包括 1 次插入2 次删除
  1. 1 2
      tools/src/Command/TagVendorsCommand.php

+ 1 - 2
tools/src/Command/TagVendorsCommand.php

@@ -48,9 +48,8 @@ class TagVendorsCommand extends Command
 
             $content = parse_ini_file($realpath, true);
             foreach ($content as $sec => $conf) {
-                $output->writeln(json_encode($content));
-                $output->writeln($sec . " - " . $content[$sec]["branch"] . " - " . $version . " - " . $tag . " - " . $content[$sec]["repo"]);
                 $content[$sec]["branch"] = $version;
+                $output->writeln($sec . " - " . $content[$sec]["branch"] . " - " . $version . " - " . $tag . " - " . $content[$sec]["repo"]);
                 try {
                     $git = new Git();
                     $git_path = $dirname . '/' . $sec;