From a0b6941ca74a20bb24ba5747497d46b6ec5d6788 Mon Sep 17 00:00:00 2001 From: BluTiger <65156144+Blu-Tiger@users.noreply.github.com> Date: Mon, 23 Sep 2024 15:03:41 +0200 Subject: [PATCH] Update unix_install.sh --- unix_install.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unix_install.sh b/unix_install.sh index 002eee8..0ed92ba 100644 --- a/unix_install.sh +++ b/unix_install.sh @@ -137,10 +137,13 @@ else if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Detect the package manager if command_exists apt; then + echo "Detected Debian-based system." install_on_debian "openssl" elif command_exists yum; then + echo "Detected Red Hat-based system." install_on_redhat "openssl" elif command_exists pacman; then + echo "Detected Arch-based system." install_on_arch "openssl" else echo "Unsupported Linux distribution." @@ -150,6 +153,7 @@ else echo "Detected BSD-based system." install_on_bsd "openssl" elif [[ "$OSTYPE" == "darwin"* ]]; then + echo "Detected macOS." install_on_macos "openssl" else echo "Unsupported operating system."