From 266406b921a6d4b93b1db90065e5e957c946de55 Mon Sep 17 00:00:00 2001 From: Philipp Wolfer Date: Wed, 1 May 2024 10:47:35 +0200 Subject: [PATCH] Prevent AppImage startup error "OpenSSL 3.0's legacy provider failed to load" --- appimage/AppRun | 3 +++ 1 file changed, 3 insertions(+) diff --git a/appimage/AppRun b/appimage/AppRun index d554c30..71f4006 100755 --- a/appimage/AppRun +++ b/appimage/AppRun @@ -6,6 +6,9 @@ export LD_LIBRARY_PATH="${APPDIR}/usr/lib:${APPDIR}/usr/conda/lib:${LD_LIBRARY_P # Prevent Qt to load plugins from system directories unset QT_PLUGIN_PATH +# Prevent OpsenSSL 3.0 startup error +export CRYPTOGRAPHY_OPENSSL_NO_LEGACY=1 + # Set the original working dir as the working dir. # Ensures relative path arguments are resolved as expected. cd $OWD