1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-04 16:10:08 +01:00

Drop extensions directory

This commit is contained in:
Matt Stauffer
2023-01-11 11:37:53 -05:00
parent 4c10d906f7
commit 21981b12a0

View File

@@ -16,7 +16,6 @@ public function install(): void
$this->createConfigurationDirectory();
$this->createDriversDirectory();
$this->createSitesDirectory();
$this->createExtensionsDirectory();
$this->createLogDirectory();
$this->createCertificatesDirectory();
$this->writeBaseConfiguration();
@@ -66,14 +65,6 @@ public function createSitesDirectory(): void
$this->files->ensureDirExists(VALET_HOME_PATH.'/Sites', user());
}
/**
* Create the directory for the Valet extensions.
*/
public function createExtensionsDirectory(): void
{
$this->files->ensureDirExists(VALET_HOME_PATH.'/Extensions', user());
}
/**
* Create the directory for Nginx logs.
*/