fix update composer install command

This commit is contained in:
xiaomlove
2022-02-12 20:57:34 +08:00
parent 5bcef7cae1
commit 8b041f838a

View File

@@ -284,7 +284,7 @@ class Update extends Install
public function updateDependencies()
{
$command = "composer install";
$command = "composer install -d " . ROOT_PATH;
$this->executeCommand($command);
$this->doLog("[COMPOSER INSTALL] SUCCESS");
}