shithub: cstory

Download patch

ref: f0206600b16acd92e27b6a681765373d077de9cd
parent: 0902b9e35d438418afb39e9fe41f365655fa4e17
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu Feb 6 04:21:45 EST 2020

Travis: Exclude macOS Make OpenGLES2 build too

OpenGLES2 is also apparently in a different location

--- a/.travis.yml
+++ b/.travis.yml
@@ -61,9 +61,11 @@
 
 jobs:
   exclude:
-    # Apple's OpenGL is in a non-standard location, so this build doesn't work
+    # Apple's OpenGL is in a non-standard location, so these builds don't work
     - os: osx
       env: BUILD_SYSTEM=make RENDERER=OpenGL3
+    - os: osx
+      env: BUILD_SYSTEM=make RENDERER=OpenGLES2
 
 before_install:
     # Set URL for Discord send script
--