Merge pull request #8545 from thalesmg/fix-bogus-mix-version-parser

chore(mix): patch mix version parser when it fails
This commit is contained in:
Thales Macedo Garitezi 2022-07-22 10:59:02 -03:00 committed by GitHub
commit a14a96b0a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ if [ "$GIT_EXACT_VSN" != '' ]; then
fi
SUFFIX=''
else
SUFFIX="-$(git rev-parse HEAD | cut -b1-8)"
SUFFIX="-g$(git rev-parse HEAD | cut -b1-8)"
fi
PKG_VSN="${PKG_VSN:-${RELEASE}${SUFFIX}}"