Browse Source

Fix glbinding location for Travis

Thomas Buck 8 years ago
parent
commit
cab31441bc
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      cmake/travis_script_linux.sh
  2. 1
    1
      cmake/travis_script_mac.sh

+ 1
- 1
cmake/travis_script_linux.sh View File

@@ -7,7 +7,7 @@ if [ "$CC" = "clang" ]; then export CC="clang-3.5"; fi
7 7
 if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.5"; fi
8 8
 
9 9
 # Need to build latest glbinding from source
10
-GLBVER=`curl https://api.github.com/repos/hpicgs/glbinding/releases/latest | grep -m1 tag_name | cut -d\" -f4`
10
+GLBVER=`curl https://api.github.com/repos/cginternals/glbinding/releases/latest | grep -m1 tag_name | cut -d\" -f4`
11 11
 curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
12 12
 cd glbinding-${GLBVER#v}
13 13
 

+ 1
- 1
cmake/travis_script_mac.sh View File

@@ -1,7 +1,7 @@
1 1
 #!/bin/bash
2 2
 
3 3
 # Need to build latest glbinding from source
4
-GLBVER=`curl https://api.github.com/repos/hpicgs/glbinding/releases/latest | grep -m1 tag_name | cut -d\" -f4`
4
+GLBVER=`curl https://api.github.com/repos/cginternals/glbinding/releases/latest | grep -m1 tag_name | cut -d\" -f4`
5 5
 curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
6 6
 cd glbinding-${GLBVER#v}
7 7
 

Loading…
Cancel
Save