diff --git a/client/ayon_core/lib/vendor_bin_utils.py b/client/ayon_core/lib/vendor_bin_utils.py index 412a9292cc..a04402ba0e 100644 --- a/client/ayon_core/lib/vendor_bin_utils.py +++ b/client/ayon_core/lib/vendor_bin_utils.py @@ -67,6 +67,8 @@ def find_executable(executable): Union[str, None]: Full path to executable with extension which was found otherwise None. """ + # Expand user and environment variables + executable = os.path.expandvars(os.path.expanduser(executable)) # Skip if passed path is file if is_file_executable(executable):