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.
This commit is contained in:
baldurk
2016-10-04 22:56:00 +02:00
parent cc664a3129
commit c5eff0acc4
+1 -1
View File
@@ -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