]>
BookStack Code Mirror - system-cli/commitdiff
projects
/
system-cli
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
4a435eb
)
Removed stray debug line
author
Dan Brown
<redacted>
Thu, 7 Nov 2024 16:26:57 +0000
(16:26 +0000)
committer
Dan Brown
<redacted>
Thu, 7 Nov 2024 16:26:57 +0000
(16:26 +0000)
Closes #11
src/Services/Directories.php
patch
|
blob
|
history
diff --git
a/src/Services/Directories.php
b/src/Services/Directories.php
index 7f931e157323ec7dfd164d7d5c3d0caf63603858..fe59b7d7dc5eb356a0c91cebb1e64a723399f8f4 100644
(file)
--- 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);