From 8938c0378a9e295b2fa06541a7e1b673152993f2 Mon Sep 17 00:00:00 2001 From: John Gaunt Date: Wed, 14 Sep 2022 18:15:38 -0400 Subject: [PATCH] removed MacOS from supported OSes and added gpg linux exe --- bitwardenBackup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bitwardenBackup.py b/bitwardenBackup.py index 82b4a48..9db757d 100644 --- a/bitwardenBackup.py +++ b/bitwardenBackup.py @@ -348,8 +348,9 @@ if __name__ == "__main__": gpg_executable = os.path.join(script_directory, "lib", "gpg", "bin", "gpg.exe") elif os_detected == "Linux": bitwarden_cli_executable = os.path.join(script_directory, "lib", "Bitwarden CLI", "bw_linux") - elif os_detected == "macOS": - bitwarden_cli_executable = os.path.join(script_directory, "lib", "Bitwarden CLI", "bw_macOS") + gpg_executable = "gpg" + #elif os_detected == "macOS": + # bitwarden_cli_executable = os.path.join(script_directory, "lib", "Bitwarden CLI", "bw_macOS") else: print("Your OS is not supported. Only Windows, Linux, and macOS are supported. Those are the only three supported OSes for the Bitwarden CLI.") print("Detected OS: {0}".format(os_detected))