Use --quiet when mamba search to simplify output parsing

This commit is contained in:
Ayaz Salikhov
2021-10-16 22:21:14 +03:00
parent ef5e9dda9f
commit 2a552f9375

View File

@@ -116,7 +116,7 @@ class CondaPackageHelper:
LOGGER.info("Grabing the list of available packages (can take a while) ...")
# Keeping command line output since `mamba search --outdated --json` is way too long ...
self.available = CondaPackageHelper._extract_available(
self._execute_command(["mamba", "search", "--outdated"])
self._execute_command(["mamba", "search", "--outdated", "--quiet"])
)
return self.available