nextcloud-spreed-signaling/scripts/get-version.sh
n-connect 29526586ef
FreeBSD Update
Change script header using env instead of direct Bash shell call (full path of 'env' is '/usr/bin/env')
2020-05-14 00:59:06 +02:00

22 lines
483 B
Bash
Executable file

#!/usr/bin/env bash
set -e
ROOT="$(cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd)"
VERSION=
if [ -s "$ROOT/../version.txt" ]; then
VERSION=$(cat "$ROOT/../version.txt" | tr -d '[:space:]')
fi
if [ -z $VERSION ] && [ -d "$ROOT/../.git" ]; then
if [ "$1" == "--tar" ]; then
VERSION=$(git describe --dirty --tags --always | sed 's/debian\///g')
else
VERSION=$(git log -1 --pretty=%H)
fi
fi
if [ -z $VERSION ]; then
VERSION=unknown
fi
echo $VERSION