Skip to content
This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Commit ff67208

Browse files
committed
Fix intall assets
1 parent d9f057d commit ff67208

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ggrachdev.debugbar/install/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function installAssets() {
8888
\mkdir($dirJsTo);
8989
}
9090

91-
if (!\is_dir($dirJsFrom) && \is_dir($dirJsTo)) {
91+
if (\is_dir($dirJsFrom) && \is_dir($dirJsTo)) {
9292
\CopyDirFiles($dirJsFrom, $dirJsTo, true, true);
9393
}
9494

@@ -107,7 +107,7 @@ public function installAssets() {
107107
\mkdir($dirCssTo);
108108
}
109109

110-
if (!\is_dir($dirCssFrom) && \is_dir($dirCssTo)) {
110+
if (\is_dir($dirCssFrom) && \is_dir($dirCssTo)) {
111111
\CopyDirFiles($dirCssFrom, $dirCssTo, true, true);
112112
}
113113
}

0 commit comments

Comments
 (0)