From: Dan Brown Date: Thu, 7 Nov 2024 16:26:57 +0000 (+0000) Subject: Removed stray debug line X-Git-Url: http://source.bookstackapp.com/system-cli/commitdiff_plain/321f712b65a0b84708c345e024f6f428dfae6f17?ds=sidebyside Removed stray debug line Closes #11 --- diff --git a/src/Services/Directories.php b/src/Services/Directories.php index 7f931e1..fe59b7d 100644 --- a/src/Services/Directories.php +++ b/src/Services/Directories.php @@ -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);