aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2019-01-06 21:13:19 +0100
committerAhmad Fatoum <ahmad@a3f.at>2019-01-06 21:14:46 +0100
commitdc415b9a5edb59153ebcd4dee164853cb542a6eb (patch)
treef8847070d64d1426c294d255cffade3f9907cd1a
parent1036de389abb9557cef7f801166a4550e0e90fee (diff)
downloadraylib-dc415b9a5edb59153ebcd4dee164853cb542a6eb.tar.gz
raylib-dc415b9a5edb59153ebcd4dee164853cb542a6eb.zip
Travis CI: emscripten: fix failing CMake install stage
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 12f7ac27..4c9274db 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -132,7 +132,7 @@ script:
..
- $RUNNER cmake --build . --target
- if [ "$RELEASE" != "NO" ]; then $RUNNER cmake --build . --target package; fi
- - $RUNNER $(which sudo) "$(which cmake)" --build . --target install
+ - $(which sudo) $RUNNER "$(which cmake)" --build . --target install
- if [ ! "$DONT_TEST" ]; then
pkg-config --static --libs raylib;
nm -g release/libraylib.a | grep glfwGetProcAddress || (echo "libraylib.a doesn't contain GLFW symbols! Aborting..." && false);