From 62f40421da7ba897d81243029edda2fc57c6d122 Mon Sep 17 00:00:00 2001 From: devmtm Date: Wed, 7 Nov 2018 08:42:13 +0200 Subject: [PATCH] console commands fixing --- src/commands/Error403ViewCommand.php | 2 +- src/commands/Error404ViewCommand.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/Error403ViewCommand.php b/src/commands/Error403ViewCommand.php index 3db4909..4997a39 100644 --- a/src/commands/Error403ViewCommand.php +++ b/src/commands/Error403ViewCommand.php @@ -37,7 +37,7 @@ public function handle() } (new Filesystem)->copyDirectory( - __DIR__ . '/stubs/403', + __DIR__ . '/../stubs/403', $this->viewsPath() ); diff --git a/src/commands/Error404ViewCommand.php b/src/commands/Error404ViewCommand.php index 085de75..678b863 100644 --- a/src/commands/Error404ViewCommand.php +++ b/src/commands/Error404ViewCommand.php @@ -37,7 +37,7 @@ public function handle() } (new Filesystem)->copyDirectory( - __DIR__ . '/stubs/404', + __DIR__ . '/../stubs/404', $this->viewsPath() );