Skip to content

Commit

Permalink
scmversion: Exclude previous-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Jul 24, 2023
1 parent 944bf5d commit 2e8b637
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/scmversion/gen_scmversion.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
SET VERSIONFILE="scmversion.cpp"
FOR /F "tokens=* USEBACKQ" %%g IN (`git rev-parse HEAD`) do (SET "HASH=%%g")
FOR /F "tokens=* USEBACKQ" %%g IN (`git rev-parse --abbrev-ref HEAD`) do (SET "BRANCH=%%g")
FOR /F "tokens=* USEBACKQ" %%g IN (`git describe --tags --dirty --exclude latest --exclude preview --exclude legacy --exclude play-store-release`) do (SET "TAG=%%g")
FOR /F "tokens=* USEBACKQ" %%g IN (`git describe --tags --dirty --exclude latest --exclude preview --exclude legacy --exclude previous-latest`) do (SET "TAG=%%g")
FOR /F "tokens=* USEBACKQ" %%g IN (`git log -1 --date=iso8601-strict "--format=%%cd"`) do (SET "CDATE=%%g")

SET SIGNATURELINE=// %HASH% %BRANCH% %TAG% %CDATE%
Expand Down
2 changes: 1 addition & 1 deletion src/scmversion/gen_scmversion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ fi

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 legacy --exclude play-store-release | tr -d '\r\n')
TAG=$(git describe --tags --dirty --exclude latest --exclude preview --exclude legacy --exclude previous-latest | tr -d '\r\n')
DATE=$(git log -1 --date=iso8601-strict --format=%cd)

cd $CURDIR
Expand Down

0 comments on commit 2e8b637

Please sign in to comment.