Skip to content

Commit 84612a9

Browse files
committed
Change Homebrew formula
1 parent f146169 commit 84612a9

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,14 @@ jobs:
3939
if: startsWith(runner.os, 'mac')
4040
with:
4141
xcode-version: '15.2.0'
42-
# This is gonna be hacky.
43-
# Github made us upgrade xcode, which would force an upgrade of electron-builder to fix mac.
44-
# But there were bugs with copyfiles / extraFiles that kept seeing duplicates erroring on ln.
45-
# A flag USE_HARD_LINKS=false in electron-builder.json was suggested in comments, but that broke windows builds.
46-
# So for now we'll install python2 on mac and make sure it can find it.
47-
# Remove this after successfully upgrading electron-builder.
48-
# HACK part 1
4942
- uses: Homebrew/actions/setup-homebrew@master
5043
if: startsWith(runner.os, 'mac')
51-
# HACK part 2
5244
- name: Install Python2
5345
if: startsWith(runner.os, 'mac')
5446
run: |
55-
brew install python@2
47+
brew install pyenv
48+
pyenv install 2.7
49+
pyenv global 2.7
5650
- name: Download blockchain headers
5751
run: |
5852
mkdir -p ./static/daemon

0 commit comments

Comments
 (0)