Skip to content

Commit

Permalink
One more bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminhansen committed Mar 25, 2024
1 parent b146fc5 commit 48657bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MakeView.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ public function handle()
$folder = $parts[$i];
$view_path .= "/{$folder}";

if(!file_exists($folder)) {
mkdir($folder);
if(!file_exists($view_path)) {
mkdir($view_path);
}
}

Expand Down

0 comments on commit 48657bc

Please sign in to comment.