mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 03:52:25 +00:00
validate:launcher: Do not hardcode pathsep
This commit is contained in:
parent
993b752816
commit
461e479802
1 changed files with 1 additions and 1 deletions
|
@ -1592,7 +1592,7 @@ class _TestsLauncher(Loggable):
|
|||
app_dirs = []
|
||||
env_dirs = os.environ["GST_VALIDATE_APPS_DIR"]
|
||||
if env_dirs is not None:
|
||||
for dir_ in env_dirs.split(":"):
|
||||
for dir_ in env_dirs.split(os.pathsep):
|
||||
app_dirs.append(dir_)
|
||||
|
||||
return app_dirs
|
||||
|
|
Loading…
Reference in a new issue