Skip to content

Commit fddeea4

Browse files
committed
Do not mark auto recipes as "update as available"
1 parent f1e77e6 commit fddeea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/RecipesCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
109109
$additional = null;
110110
if (null === $lockRef && null !== $recipe->getRef()) {
111111
$additional = '<comment>(recipe not installed)</comment>';
112-
} elseif ($recipe->getRef() !== $lockRef) {
112+
} elseif ($recipe->getRef() !== $lockRef && !$recipe->isAuto()) {
113113
$additional = '<comment>(update available)</comment>';
114114
}
115115

0 commit comments

Comments
 (0)