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
 if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.5"; fi
7
 if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.5"; fi
8
 
8
 
9
 # Need to build latest glbinding from source
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
 curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
11
 curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
12
 cd glbinding-${GLBVER#v}
12
 cd glbinding-${GLBVER#v}
13
 
13
 

+ 1
- 1
cmake/travis_script_mac.sh View File

1
 #!/bin/bash
1
 #!/bin/bash
2
 
2
 
3
 # Need to build latest glbinding from source
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
 curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
5
 curl -L https://github.com/hpicgs/glbinding/archive/${GLBVER}.tar.gz | tar xzf -
6
 cd glbinding-${GLBVER#v}
6
 cd glbinding-${GLBVER#v}
7
 
7
 

Loading…
Cancel
Save