Skip to content

Commit

Permalink
Merge pull request #41 from laravel/pr23663
Browse files Browse the repository at this point in the history
Add autoload_real.php to the vendor hash
  • Loading branch information
taylorotwell authored Feb 19, 2020
2 parents 274579a + 00714c8 commit dda6b1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/DeployCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'));
}

/**
Expand Down

0 comments on commit dda6b1a

Please sign in to comment.