Skip to content

Commit e3fb8c3

Browse files
fix: use portable extended grep regex
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
1 parent 18451fe commit e3fb8c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quickemu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -965,7 +965,7 @@ function check_cocoa_gl_es_support() {
965965

966966
# Test QEMU directly for gl=es support - most reliable method
967967
# This catches both missing OpenGL build support and missing ANGLE libraries
968-
if "${QEMU}" -display cocoa,gl=es -M none 2>&1 | grep -qi "OpenGL support was not enabled\|does not accept"; then
968+
if "${QEMU}" -display cocoa,gl=es -M none 2>&1 | grep -Eqi "OpenGL support was not enabled|does not accept"; then
969969
return 1
970970
fi
971971

0 commit comments

Comments
 (0)