Skip to content

Commit 379f671

Browse files
Merge pull request #11 from soysaltansst/master
Update ComposerDependenciesUpToDate.php
2 parents 11a587b + a841333 commit 379f671

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Checks/Application/ComposerDependenciesUpToDate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function check(array $config): bool
2323
$binary = $config['binary_path'];
2424

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

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

0 commit comments

Comments
 (0)