Skip to content

Commit

Permalink
Merge pull request #23 from Lemon-Framework/v2.x
Browse files Browse the repository at this point in the history
Fixed is_dir
  • Loading branch information
tenmajkl authored Aug 18, 2021
2 parents ff32506 + 6fc97db commit 1024ddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Kernel/Lemonade/Repl/repl.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public function run($directory)

$dir = $directory . DIRECTORY_SEPARATOR . "app";

if (isdir($dir))
if (is_dir($dir))
loader($dir);

$this->last_command = "";
Expand Down

0 comments on commit 1024ddc

Please sign in to comment.