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

Symlink valet.sock *after* restarting so it's not deleted by restarting PHP-FPM

Co-Authored-By: Jacob Baker-Kretzmar <18192441+bakerkretzmar@users.noreply.github.com>
This commit is contained in:
Matt Stauffer
2022-03-14 14:22:37 -04:00
parent b8885a4115
commit e4c7a9b3e5

View File

@@ -59,9 +59,9 @@ public function install()
$this->files->unlink(VALET_HOME_PATH.'/valet.sock');
$this->cli->quietly('sudo rm '.VALET_HOME_PATH.'/valet.sock');
$this->symlinkPrimaryValetSock($phpVersion);
$this->restart();
$this->symlinkPrimaryValetSock($phpVersion);
}
/**