mirror of
https://github.com/stenzek/duckstation.git
synced 2024-12-02 10:56:26 +00:00
scmversion: Use source directory as git directory
Fixes tagging in out of directory builds.
This commit is contained in:
parent
c962e9899d
commit
fd3c12de84
@ -1,11 +1,17 @@
|
||||
#!/bin/sh
|
||||
|
||||
VERSION_FILE="scmversion.cpp"
|
||||
|
||||
CURDIR=$(pwd)
|
||||
cd $(dirname $(readlink -f $0))
|
||||
|
||||
HASH=$(git rev-parse HEAD)
|
||||
BRANCH=$(git rev-parse --abbrev-ref HEAD | tr -d '\r\n')
|
||||
TAG=$(git describe --tags --dirty --exclude latest --exclude preview --exclude play-store-release | tr -d '\r\n')
|
||||
DATE=$(git log -1 --date=iso8601-strict --format=%cd)
|
||||
|
||||
cd $CURDIR
|
||||
|
||||
SIGNATURE_LINE="// ${HASH} ${BRANCH} ${TAG} ${DATE}"
|
||||
|
||||
if [ -f $VERSION_FILE ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user