Merge remote-tracking branch 'acore/master' into test-staging

# Conflicts:
#	.github/workflows/windows_build.yml
This commit is contained in:
Keleborn
2026-05-05 13:24:38 -07:00
27 changed files with 441 additions and 99 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Set SUDO variable - one liner
if [[ "$OSTYPE" == "msys"* ]]; then
if [[ "$OSTYPE" == "msys"* || "$OSTYPE" == "cygwin"* ]]; then
SUDO=""
else
SUDO=$([ "$EUID" -ne 0 ] && echo "sudo" || echo "")
@@ -49,7 +49,7 @@ function inst_configureOS() {
source "$AC_PATH_INSTALLER/includes/os_configs/$DISTRO.sh"
;;
*bsd*) echo "BSD is not supported yet" ;;
msys*) source "$AC_PATH_INSTALLER/includes/os_configs/windows.sh" ;;
msys*|cygwin*) source "$AC_PATH_INSTALLER/includes/os_configs/windows.sh" ;;
*) echo "This platform is not supported" ;;
esac
}