From 8b041f838a34fbd18523946b479e3160fe1c8ae8 Mon Sep 17 00:00:00 2001 From: xiaomlove Date: Sat, 12 Feb 2022 20:57:34 +0800 Subject: [PATCH] fix update composer install command --- nexus/Install/Update.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nexus/Install/Update.php b/nexus/Install/Update.php index b1392d90..63da18fe 100644 --- a/nexus/Install/Update.php +++ b/nexus/Install/Update.php @@ -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"); }