This commit is contained in:
Kovid Goyal 2022-08-15 17:49:31 +05:30
parent cea9ff30dc
commit 3a21605b05
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -30,7 +30,7 @@ def install_deps():
print('Installing kitty dependencies...') print('Installing kitty dependencies...')
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 ')]
openssl = 'openssl' openssl = 'openssl'
items.remove('go') # already installed by ci.yml items.remove('go') # already installed by ci.yml
import ssl import ssl