mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
validate: Fix launcher when running installed
This commit is contained in:
parent
c7c879fc1c
commit
bbe56a4fd9
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,6 @@
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
from launcher.main import main
|
|
||||||
|
|
||||||
LIBDIR = '@LIBDIR@'
|
LIBDIR = '@LIBDIR@'
|
||||||
|
|
||||||
|
@ -37,4 +36,5 @@ def _add_gst_launcher_path():
|
||||||
|
|
||||||
if "__main__" == __name__:
|
if "__main__" == __name__:
|
||||||
_add_gst_launcher_path()
|
_add_gst_launcher_path()
|
||||||
|
from launcher.main import main
|
||||||
exit(main())
|
exit(main())
|
||||||
|
|
Loading…
Reference in a new issue