Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upfix: make local build pass #17438
fix: make local build pass #17438
Conversation
cb3c099
to
6bf1892
6bf1892
to
56181ec
@@ -164,7 +164,7 @@ function _getVersionFromGit(experimental: boolean): string { | |||
} | |||
|
|||
const hasLocalChanges = _exec(`git status --porcelain`) != ''; | |||
const scmVersionTagRaw = _exec(`git describe --match v[0-9]*.[0-9]*.[0-9]* --abbrev=7 --tags`) | |||
const scmVersionTagRaw = _exec(`git describe --match v[0-9]*.[0-9]*.[0-9]* --abbrev=7 --tags --always`) |
alan-agius4
Apr 10, 2020
•
Collaborator
This doesn't seem right, because --always
will return commit SHA and not a tag version.
I think the original problem is that tags were not fetched or are not in sync with upstream.
PS: in such case commit msg should be build:
manekinekko
Apr 10, 2020
Author
Member
I will update the commit message.
FYI, this was a fresh build (on a new computer) and followed the installation guide.
Closes #17437