mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
gst-env: Windows: Fix looking for cmd_or_ps.ps1 in the wrong directory
At the point of get_windows_shell() execution, the current directory equals DEFAULT_BUILDDIR=./build. But cmd_or_ps.ps1 is in SCRIPTDIR=./ (repo root). Point subprocess.check_output() to the correct directory. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/238>
This commit is contained in:
parent
d3c4043db3
commit
d5b6cc88f9
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ def get_subprocess_env(options, gst_version):
|
|||
|
||||
def get_windows_shell():
|
||||
command = ['powershell.exe' ,'-noprofile', '-executionpolicy', 'bypass', '-file', 'cmd_or_ps.ps1']
|
||||
result = subprocess.check_output(command)
|
||||
result = subprocess.check_output(command, cwd=SCRIPTDIR)
|
||||
return result.decode().strip()
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue