diff options
author | Marcus Schommer <sabotrax@gmail.com> | 2024-08-17 20:27:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-17 20:27:36 +0200 |
commit | a691ad3f4ddb43120a7be318352fc2789b5a47c4 (patch) | |
tree | aea970b3264cf881b77c61a73ee21afc1ac0ed02 /apps/installer/includes | |
parent | 6e3dba840edba68db6b558e7d83e4662c9eaadf6 (diff) |
chore(APPS/installer): Detection of BSD* OS (#19285)
Installer output is wrong for BSD*.
"acore.sh install-deps" says "This platform is not supported"
should be "BSD is not supported yet"
Diffstat (limited to 'apps/installer/includes')
-rw-r--r-- | apps/installer/includes/functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/installer/includes/functions.sh b/apps/installer/includes/functions.sh index b9bdd95500..7e95f78fca 100644 --- a/apps/installer/includes/functions.sh +++ b/apps/installer/includes/functions.sh @@ -39,7 +39,7 @@ function inst_configureOS() { # TODO: implement different configurations by distro source "$AC_PATH_INSTALLER/includes/os_configs/$DISTRO.sh" ;; - bsd*) echo "BSD is not supported yet" ;; + *bsd*) echo "BSD is not supported yet" ;; msys*) source "$AC_PATH_INSTALLER/includes/os_configs/windows.sh" ;; *) echo "This platform is not supported" ;; esac |