mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
gst-env: Allow setting environment without git
This is needed to use gst-uninstalled mode over NFS when gst-build is a worktree. When this is the case, the .git is a file that links to the original git tree, but this tree is unlikely to be visible over NFS. Instead of forcing NFS contorsion, simply ignore the error.
This commit is contained in:
parent
6d79e7cc97
commit
f69a2c9fd2
1 changed files with 5 additions and 2 deletions
|
@ -430,8 +430,11 @@ if __name__ == "__main__":
|
|||
exit(1)
|
||||
|
||||
# The following incantation will retrieve the current branch name.
|
||||
gst_version = git("rev-parse", "--symbolic-full-name", "--abbrev-ref", "HEAD",
|
||||
repository_path=options.srcdir).strip('\n')
|
||||
try:
|
||||
gst_version = git("rev-parse", "--symbolic-full-name", "--abbrev-ref", "HEAD",
|
||||
repository_path=options.srcdir).strip('\n')
|
||||
except subprocess.CalledProcessError:
|
||||
gst_version = "unknown"
|
||||
|
||||
if options.wine:
|
||||
gst_version += '-' + os.path.basename(options.wine)
|
||||
|
|
Loading…
Reference in a new issue