From c0890fd57d19220c07a54fd92e52ec24715de4de Mon Sep 17 00:00:00 2001 From: crp3844 Date: Thu, 8 Sep 2022 13:14:36 -0400 Subject: [PATCH] updated unsupported OS message --- bitwardenBackup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitwardenBackup.py b/bitwardenBackup.py index 66e4766..b424ec4 100644 --- a/bitwardenBackup.py +++ b/bitwardenBackup.py @@ -26,7 +26,7 @@ elif os_detected == "Linux": 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 and Linux are currently supported.") + 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)) sys.exit(1)