Browse Source

Temporarily force the engine version to 3.3, revert this commit on master, when the SDK has a v3.3 branch.

MeFisto94 5 years ago
parent
commit
56cdc94e55
1 changed files with 2 additions and 1 deletions
  1. 2 1
      build_engine.sh

+ 2 - 1
build_engine.sh

@@ -8,7 +8,8 @@ if [ ! -d "engine" ]; then
         # Extract the engine version from the sdk branch tag.
         git clone -b $(echo "$TRAVIS_TAG" | sed -n 's/\(v.\+\)-sdk.\+/\1/p') --single-branch --depth 10 https://github.com/jMonkeyEngine/jMonkeyEngine/ engine # single-branch requires git > 1.7.10, if you see an error, just leave it out.
     else
-        git clone -b master --single-branch --depth 10 https://github.com/jMonkeyEngine/jMonkeyEngine/ engine # single-branch requires git > 1.7.10, if you see an error, just leave it out.
+        #git clone -b master --single-branch --depth 10 https://github.com/jMonkeyEngine/jMonkeyEngine/ engine # single-branch requires git > 1.7.10, if you see an error, just leave it out.
+        git clone -b v3.3 --single-branch --depth 10 https://github.com/jMonkeyEngine/jMonkeyEngine/ engine # single-branch requires git > 1.7.10, if you see an error, just leave it
     fi
     cd engine
 else