瀏覽代碼

Moving gameplay-deps to use github release attachments.

seanpaultaylor 12 年之前
父節點
當前提交
bbe3329644
共有 2 個文件被更改,包括 8 次插入19 次删除
  1. 4 10
      install.bat
  2. 4 9
      install.sh

+ 4 - 10
install.bat

@@ -1,22 +1,16 @@
 @echo off
 @echo off
 REM
 REM
-REM install.bat [master | next]
+REM install.bat
 REM
 REM
-REM Download GamePlay resources from HTTP server and extract from ZIP
+REM Download GamePlay external dependencies and binaries and extract from ZIP
 REM
 REM
 REM Helps prevent repo bloat due to large binary files since they can
 REM Helps prevent repo bloat due to large binary files since they can
 REM be hosted separately.
 REM be hosted separately.
 REM
 REM
 
 
-REM Production URL
-set prefix=http://www.gameplay3d.org
+set prefix=https://github.com/blackberry/GamePlay/releases/download/v1.7.0
 
 
-set branchname=%1
-if "%branchname%" == "" (
-  set branchname=master
-)
-
-set filename=gameplay-deps-%branchname%
+set filename=gameplay-deps
 
 
 echo Downloading %filename%.zip from %prefix%
 echo Downloading %filename%.zip from %prefix%
 %~d0
 %~d0

+ 4 - 9
install.sh

@@ -1,21 +1,16 @@
 #!/bin/bash
 #!/bin/bash
 #
 #
-# ./install.sh [master | next]
+# ./install.sh
 #
 #
-# Download GamePlay resources from HTTP server and extract from ZIP
+# Download GamePlay external dependencies and binaries and extract from ZIP
 #
 #
 # Helps prevent repo bloat due to large binary files since they can
 # Helps prevent repo bloat due to large binary files since they can
 # be hosted separately.
 # be hosted separately.
 #
 #
 
 
-prefix=http://www.gameplay3d.org
+prefix=https://github.com/blackberry/GamePlay/releases/download/v1.7.0
 
 
-branchname=$1
-if [[ "$branchname" == "" ]]; then
-  branchname="master"
-fi
-
-filename=gameplay-deps-$branchname
+filename=gameplay-deps
 
 
 echo Downloading $filename.zip from $prefix...
 echo Downloading $filename.zip from $prefix...
 curl -# -O $prefix/$filename.zip
 curl -# -O $prefix/$filename.zip