build/cmd/coordinator/version.sh: added check incase of no upstream set

Added " [-n $(git remote -v)] " to check whether any remote upstream exists. If exists it moves forward to next check else it appends USER and DATE to VERSION.
Fixes golang/go#29929
This commit is contained in:
saitarunreddy 2019-01-26 15:30:53 +05:30 коммит произвёл GitHub
Родитель d13887be63
Коммит 2a466b1cf9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -9,7 +9,7 @@ if ! git diff-index HEAD --quiet || ! git diff-files --quiet; then
VERSION=$VERSION-dirty
dirty=1
fi
if [ -n "$dirty" ] || [ -z "$(git ls-remote)"] || [ -n "$(git rev-list '@{upstream}..HEAD')" ]; then
if [ -n "$dirty" ] || [ -z "$(git remote -v)"] || [ -n "$(git rev-list '@{upstream}..HEAD')" ]; then
VERSION=$VERSION-$USER-$(date -u +%Y-%m-%dT%H:%M:%SZ)
fi
echo "$VERSION"