platformtest.sh: Show only up to 10 bytes of version information

This commit is contained in:
Alexander Barton 2014-01-11 01:32:12 +01:00
parent 97b4fd8a08
commit 1f5508d049
1 changed files with 2 additions and 2 deletions

View File

@ -151,8 +151,8 @@ fi
# Get ngIRCd version information
eval $(grep "^VERSION = " Makefile | sed -e 's/ //g')
case "$VERSION" in
*-*-*)
VERSION=`echo "$VERSION" | cut -d'-' -f3 | cut -b2-`
*~*-*)
VERSION=`echo "$VERSION" | cut -b1-10`
;;
esac
[ -n "$VERSION" ] || VERSION="unknown"