From 83575a464fc821e42531cc446b680fff10448807 Mon Sep 17 00:00:00 2001 From: ocornut Date: Sat, 6 Dec 2014 21:01:00 +0000 Subject: [PATCH] Setup Travis CI integration Forgot sudo. Removing apt-get update, probably works without. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 80cf9cc9..c9818933 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ compiler: - gcc before_install: - - if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get update && apt-get install -y --no-install-recommends libglfw3-dev libglew-dev; fi + - if [ $TRAVIS_OS_NAME == linux ]; then sudo apt-get install -y --no-install-recommends libglfw3-dev libglew-dev; fi script: - cd examples/opengl_example && make