restore LD_LIBRARY_PATH for PyInstaller builds (#5421)

This commit is contained in:
Mike Fährmann
2024-04-06 03:24:51 +02:00
parent 86a97d8e27
commit 9a8403917a
5 changed files with 36 additions and 10 deletions

View File

@@ -857,7 +857,7 @@ class DatabaseConnection():
def Popen_communicate(*args):
proc = subprocess.Popen(
proc = util.Popen(
args, stdout=subprocess.PIPE, stderr=subprocess.DEVNULL)
try:
stdout, stderr = proc.communicate()