From de7f7283a8c9c7958dfa20664ed290dae65c9330 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 26 Nov 2020 15:10:54 +0100 Subject: [PATCH] Fixes the generation of vendor hash with --no-dev (#95) --- src/Commands/DeployCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/DeployCommand.php b/src/Commands/DeployCommand.php index 4bb6d7e6..1608179e 100644 --- a/src/Commands/DeployCommand.php +++ b/src/Commands/DeployCommand.php @@ -251,7 +251,7 @@ protected function cancelDeployment(array $deployment) */ protected function createVendorHash() { - return md5(md5_file(Path::app().'/composer.json').md5_file(Path::app().'/composer.lock').md5_file(Path::vendor().'/composer/autoload_real.php')); + return md5(md5_file(Path::app().'/composer.json').md5_file(Path::app().'/composer.lock').md5_file(Path::vendor().'/composer/installed.json')); } /**