Merge branch 'submodule-version' of xloem/lbmk into master
This commit is contained in:
commit
89aac5393a
|
@ -24,7 +24,7 @@ if [ -f version ]; then
|
||||||
version="$(cat version)"
|
version="$(cat version)"
|
||||||
fi
|
fi
|
||||||
version_="${version}"
|
version_="${version}"
|
||||||
if [ -d ".git/" ]; then
|
if [ -e ".git" ]; then
|
||||||
version="$(git describe --tags HEAD 2>&1)" \
|
version="$(git describe --tags HEAD 2>&1)" \
|
||||||
|| version="git-$(git rev-parse HEAD 2>&1)" \
|
|| version="git-$(git rev-parse HEAD 2>&1)" \
|
||||||
|| version="${version_}"
|
|| version="${version_}"
|
||||||
|
@ -36,7 +36,7 @@ if [ -f versiondate ]; then
|
||||||
versiondate="$(cat versiondate)"
|
versiondate="$(cat versiondate)"
|
||||||
fi
|
fi
|
||||||
versiondate_="${versiondate}"
|
versiondate_="${versiondate}"
|
||||||
if [ -d ".git/" ]; then
|
if [ -e ".git" ]; then
|
||||||
versiondate="$(git show --no-patch --no-notes --pretty='%ct' HEAD)" \
|
versiondate="$(git show --no-patch --no-notes --pretty='%ct' HEAD)" \
|
||||||
|| versiondate="${versiondate_}"
|
|| versiondate="${versiondate_}"
|
||||||
printf "%s\n" "${versiondate}" > versiondate
|
printf "%s\n" "${versiondate}" > versiondate
|
||||||
|
|
Loading…
Reference in New Issue