From 4b85dbfa3dceeaf7227e3029707562fd60297e86 Mon Sep 17 00:00:00 2001 From: Gabriel Grysuk Date: Tue, 7 Feb 2023 23:08:37 -0300 Subject: [PATCH] Fixed the path to devcontainer.stub (#544) --- src/Console/Concerns/InteractsWithDockerComposeServices.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Concerns/InteractsWithDockerComposeServices.php b/src/Console/Concerns/InteractsWithDockerComposeServices.php index 0cea8618..7aab9945 100644 --- a/src/Console/Concerns/InteractsWithDockerComposeServices.php +++ b/src/Console/Concerns/InteractsWithDockerComposeServices.php @@ -184,7 +184,7 @@ protected function installDevContainer() file_put_contents( $this->laravel->basePath('.devcontainer/devcontainer.json'), - file_get_contents(__DIR__.'/../../stubs/devcontainer.stub') + file_get_contents(__DIR__.'/../../../stubs/devcontainer.stub') ); $environment = file_get_contents($this->laravel->basePath('.env'));