Skip to content

Commit

Permalink
Fix build_engine.sh: The Engine GIT Tags are "v3.2.0-stable", whereas…
Browse files Browse the repository at this point in the history
… the POM Version is 3.2.0-stable
  • Loading branch information
MeFisto94 committed Jan 11, 2018
1 parent 04a2838 commit 8cbbdad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_engine.sh
Expand Up @@ -5,7 +5,7 @@
echo "Downloading the Engine, this may take some time"
if [ "x$TRAVIS" != "x" ] && [ "x$TRAVIS_TAG" != "x" ]; 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.
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.
fi
Expand Down

0 comments on commit 8cbbdad

Please sign in to comment.