Provide better error messages from run_app

This commit is contained in:
heliguy
2024-04-02 05:12:23 -04:00
parent c180df4ca1
commit 7543180a86

View File

@@ -449,9 +449,10 @@ class myUtils:
check=True,
env=self.new_env,
start_new_session=True,
capture_output=True,
)
except subprocess.CalledProcessError as e:
self.run_app_error_message = str(e)
self.run_app_error_message = e.stderr.decode()
self.run_app_error = True
def get_install_type(self, type_arr):