Skip to content

Commit f222a28

Browse files
committed
fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! fixup! squash! fixup! Fix CI regressions
1 parent d2a78d0 commit f222a28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_sdl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,9 @@ def get_cdef() -> tuple[str, dict[str, str]]:
316316
317317
"""
318318
)
319-
if (SDL_INCLUDE / "SDL3/SDL.h").exists(): # Regular path
319+
if Path(SDL_INCLUDE, "SDL3/SDL.h").exists(): # Regular path
320320
parser.parse("#include <SDL3/SDL.h>\n")
321-
elif (SDL_INCLUDE / "SDL.h").exists(): # Using MacOS dmg archive
321+
elif Path(SDL_INCLUDE, "SDL.h").exists(): # Using MacOS dmg archive
322322
parser.parse("#include <SDL.h>\n")
323323
else:
324324
raise AssertionError(SDL_INCLUDE)

0 commit comments

Comments
 (0)