Skip to content

Commit

Permalink
Merge pull request #11 from soysaltansst/master
Browse files Browse the repository at this point in the history
Update ComposerDependenciesUpToDate.php
  • Loading branch information
sarfraznawaz2005 committed Aug 24, 2022
2 parents 11a587b + a841333 commit 379f671
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Checks/Application/ComposerDependenciesUpToDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function check(array $config): bool
$binary = $config['binary_path'];

chdir(base_path());
exec("$binary install --dry-run 2>&1", $output, $status);
exec("$binary install --dry-run --no-interaction 2>&1", $output, $status);
$output = implode('-', $output);

return strstr($output, 'Nothing to install');
Expand Down

0 comments on commit 379f671

Please sign in to comment.