From 00714c8c18846eadd5c9eb93dc2d6ff580e51b1a Mon Sep 17 00:00:00 2001 From: Mohamed Said Date: Wed, 19 Feb 2020 13:30:44 +0200 Subject: [PATCH] add autoload_real.php to the vendor hash --- 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 079f778d..557d926f 100644 --- a/src/Commands/DeployCommand.php +++ b/src/Commands/DeployCommand.php @@ -238,7 +238,7 @@ protected function cancelDeployment(array $deployment) */ protected function createVendorHash() { - return md5(md5_file(Path::app().'/composer.json').md5_file(Path::app().'/composer.lock')); + return md5(md5_file(Path::app().'/composer.json').md5_file(Path::app().'/composer.lock').md5_file(Path::vendor().'/composer/autoload_real.php')); } /**