Skip to content

Commit

Permalink
Fixes the generation of vendor hash with --no-dev (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
nunomaduro authored Nov 26, 2020
1 parent a161499 commit de7f728
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 @@ -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'));
}

/**
Expand Down

0 comments on commit de7f728

Please sign in to comment.