diff options
author | Nikias Bassen | 2023-04-30 16:43:59 +0200 |
---|---|---|
committer | Nikias Bassen | 2023-04-30 16:43:59 +0200 |
commit | a851716c8430c7436559f3e74d7ad8cb2089fdcd (patch) | |
tree | 76d265ed7d164769554d1d1fca2031d6e5d31bda | |
parent | 7321192b1bd3781ca214f575d63e2df4b0fdade2 (diff) | |
download | idevicerestore-a851716c8430c7436559f3e74d7ad8cb2089fdcd.tar.gz idevicerestore-a851716c8430c7436559f3e74d7ad8cb2089fdcd.tar.bz2 |
git-version-gen: Prevent multiple lines of output
-rwxr-xr-x | git-version-gen | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/git-version-gen b/git-version-gen index 3eb6a42..d868952 100755 --- a/git-version-gen +++ b/git-version-gen @@ -3,7 +3,7 @@ SRCDIR=`dirname $0` if test -n "$1"; then VER=$1 else - if test -d "${SRCDIR}/.git" && test -x "`which git`" ; then + if test -r "${SRCDIR}/.git" && test -x "`which git`" ; then git update-index -q --refresh if ! VER=`git describe --tags --dirty 2>/dev/null`; then COMMIT=`git rev-parse --short HEAD` @@ -16,4 +16,5 @@ else fi fi fi +VER=`printf %s "$VER" | head -n1` printf %s "$VER" |