Răsfoiți Sursa

Auto convert tabs to spaces in tree.txt

Vijayakrishnan Krishnan 5 ani în urmă
părinte
comite
975e0e9119
1 a modificat fișierele cu 1 adăugiri și 1 ștergeri
  1. 1 1
      app/Console/Commands/GenerateTreeCommand.php

+ 1 - 1
app/Console/Commands/GenerateTreeCommand.php

@@ -37,7 +37,7 @@ class GenerateTreeCommand extends Command
         while (!feof($file)) {
             $line = rtrim(fgets($file));
             if(trim($line) !== '') {
-                $lines[] = $line;
+                $lines[] = str_replace("\t", "    ", $line);
             }
         }