From 418de925f04ad6edf3c8771b4e622cfd46b27bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Naz=C4=B1m=20Can=20Alt=C4=B1nova?= Date: Tue, 5 May 2020 17:31:58 +0000 Subject: [PATCH] Bug 1635381 - Change the -q flag of brew cask outdated into --quiet. r=rstewart,mhentges Differential Revision: https://phabricator.services.mozilla.com/D73837 --- python/mozboot/mozboot/osx.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/mozboot/mozboot/osx.py b/python/mozboot/mozboot/osx.py index 3ca7fff2ff23..4e3b9455ba79 100644 --- a/python/mozboot/mozboot/osx.py +++ b/python/mozboot/mozboot/osx.py @@ -305,9 +305,9 @@ class OSXBootstrapper(BaseBootstrapper): universal_newlines=True).split()) to_install = [package for package in packages if package not in installed] - # The "-q" tells "brew" to only list the package names, and not the + # The "--quiet" tells "brew" to only list the package names, and not the # comparison between current and new version. - outdated = set(self.check_output(cmd + ['outdated', '-q'], + outdated = set(self.check_output(cmd + ['outdated', '--quiet'], universal_newlines=True).split()) to_upgrade = [package for package in packages if package in outdated]