]> BookStack Code Mirror - system-cli/commitdiff
Removed stray debug line
authorDan Brown <redacted>
Thu, 7 Nov 2024 16:26:57 +0000 (16:26 +0000)
committerDan Brown <redacted>
Thu, 7 Nov 2024 16:26:57 +0000 (16:26 +0000)
Closes #11

src/Services/Directories.php

index 7f931e157323ec7dfd164d7d5c3d0caf63603858..fe59b7d7dc5eb356a0c91cebb1e64a723399f8f4 100644 (file)
@@ -34,7 +34,6 @@ class Directories
             $destPath = Paths::join($target, $subPath);
             $result = true;
             if ($fileinfo->isDir() && !file_exists($destPath)) {
-                echo $destPath . "\n";
                 $result = mkdir($destPath);
             } else if ($fileinfo->isFile()) {
                 $result = copy($srcPath, $destPath);