Skip to content

Commit de7f728

Browse files
authored
Fixes the generation of vendor hash with --no-dev (#95)
1 parent a161499 commit de7f728

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/DeployCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ protected function cancelDeployment(array $deployment)
251251
*/
252252
protected function createVendorHash()
253253
{
254-
return md5(md5_file(Path::app().'/composer.json').md5_file(Path::app().'/composer.lock').md5_file(Path::vendor().'/composer/autoload_real.php'));
254+
return md5(md5_file(Path::app().'/composer.json').md5_file(Path::app().'/composer.lock').md5_file(Path::vendor().'/composer/installed.json'));
255255
}
256256

257257
/**

0 commit comments

Comments
 (0)