Skip to content

Commit a36e11b

Browse files
committed
Actions: Fix Homebrew install command for SDL2
Prepend the file path with `./` to prevent it being interpreted as a Homebrew Tap. Add `--build-from-source` to make extra sure we don't try to install a Bottle.
1 parent 7f13bbd commit a36e11b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434

3535
- name: "Compile and install dependencies"
3636
run: |
37-
brew install macos/sdl2.rb sdl2_image dylibbundler
37+
brew install --build-from-source ./macos/sdl2.rb
38+
brew install sdl2_image dylibbundler
3839
3940
- name: "Compile"
4041
run: |

0 commit comments

Comments
 (0)