buildbot: retrieve short commit hash properly

Instead of trying to manually parse the output of 'git show' which can be different across different git configurations, properly use the 'git rev-parse' command that is intended for this purpose.
master
Fernando Carmona Varo 2016-07-24 14:01:20 +02:00 committed by sfan5
parent 919d9d791c
commit 6b74e196ae
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ else
[ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)
fi
cd minetest
git_hash=`git show | head -c14 | tail -c7`
git_hash=$(git rev-parse --short HEAD)
# Get minetest_game
cd games

View File

@ -76,7 +76,7 @@ else
[ -d minetest ] && (cd minetest && git pull) || (git clone https://github.com/minetest/minetest)
fi
cd minetest
git_hash=`git show | head -c14 | tail -c7`
git_hash=$(git rev-parse --short HEAD)
# Get minetest_game
cd games