Dont add openssl to the brewfile

We only need to install it on CI because the python on CI doesnt come
from brew. Normal brewfile based installation will install openssl as a
dependency of python
This commit is contained in:
Kovid Goyal 2022-08-10 12:01:38 +05:30
parent 241c7af855
commit d4168e3b80
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 1 additions and 2 deletions

View File

@ -31,7 +31,7 @@ def install_deps():
sys.stdout.flush() sys.stdout.flush()
if is_macos: if is_macos:
items = (x.split()[1].strip('"') for x in open('Brewfile').readlines() if x.strip().startswith('brew ')) items = (x.split()[1].strip('"') for x in open('Brewfile').readlines() if x.strip().startswith('brew '))
run('brew', 'install', 'fish', *items) run('brew', 'install', 'fish', 'openssl', *items)
else: else:
run('sudo apt-get update') run('sudo apt-get update')
run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates' run('sudo apt-get install -y libgl1-mesa-dev libxi-dev libxrandr-dev libxinerama-dev ca-certificates'

View File

@ -1,7 +1,6 @@
brew "pkg-config" brew "pkg-config"
brew "zlib" brew "zlib"
brew "librsync" brew "librsync"
brew "openssl"
brew "python" brew "python"
brew "imagemagick" brew "imagemagick"
brew "harfbuzz" brew "harfbuzz"