From c5eff0acc4561dda242fa9d13a6a74b07cd2de5c Mon Sep 17 00:00:00 2001 From: baldurk Date: Tue, 4 Oct 2016 22:56:00 +0200 Subject: [PATCH] Travis: Fix typo in package name * Side note, it's incredibly stupid that the only way for me to iterate on this is to push public commits, without doing something awkward like forking to a separate repo just to test. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0ba5f68ed..1753be947 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ install: - sudo add-apt-repository -y 'deb http://apt.llvm.org/precise/ llvm-toolchain-precise-3.8 main' - wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - - sudo apt-get update -qq - - if [[ "$CODE_BUILD" == "1" ]]; then sudo apt-get install --allow-unauthenticated -y -qq libx11-dev mesa-common-dev libgl1-mesa-dev qt57-base qt57x11extras libxcb-keysyms1-dev gdb clang-format-3.8 ; fi + - if [[ "$CODE_BUILD" == "1" ]]; then sudo apt-get install --allow-unauthenticated -y -qq libx11-dev mesa-common-dev libgl1-mesa-dev qt57base qt57x11extras libxcb-keysyms1-dev gdb clang-format-3.8 ; fi - if [[ "$DOCS_BUILD" == "1" ]]; then sudo pip install --upgrade pip setuptools ; sudo pip install Sphinx sphinx-rtd-theme ; fi - if [[ "$CODE_BUILD" == "1" ]]; then clang-format-3.8 -i -style=file $(find pdblocate/ qrenderdoc/ renderdoc/ renderdoccmd/ renderdocshim/ -type f -regex '.*\(/3rdparty/\|/official/\|resource.h\).*' -prune -o -regex '.*\.\(c\|cpp\|h\)$' -print) ; fi - git clean -f