Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Young committed Sep 17, 2024
1 parent 526cf7c commit 3ebbe85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/buildTool.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,8 +910,8 @@ def installDependencies():
#
log.debug('Checking ' + packageToInstall)
brewListResult = subprocess.run(['brew', 'list', packageToInstall],
stdout = DEVNULL,
stderr = DEVNULL,
stdout = subprocess.DEVNULL,
stderr = subprocess.DEVNULL,
capture_output = False)
if (brewListResult.returncode == 0):
log.debug('Homebrew reports ' + packageToInstall + ' already installed')
Expand Down

0 comments on commit 3ebbe85

Please sign in to comment.