yuzu/externals/SDL/build-scripts/showrev.sh

26 lines
497 B
Bash
Raw Normal View History

2021-04-18 07:35:25 +04:00
#!/bin/sh
#
# Print the current source revision, if available
2021-04-20 23:40:33 +04:00
SDL_ROOT=$(dirname $0)/..
cd $SDL_ROOT
2021-05-09 13:30:38 +04:00
if [ -x "$(command -v git)" ]; then
rev=$(echo "$(git remote get-url origin 2>/dev/null)@$(git rev-list HEAD~.. 2>/dev/null)")
if [ "$rev" != "@" ]; then
2021-04-20 23:40:33 +04:00
echo $rev
exit 0
fi
fi
if [ -x "$(command -v p4)" ]; then
rev="$(p4 changes -m1 ./...\#have 2>/dev/null| awk '{print $2}')"
if [ $? = 0 ]; then
echo $rev
exit 0
fi
fi
2021-05-09 13:30:38 +04:00
echo ""
2021-04-20 23:40:33 +04:00
exit 1