Merge pull request #102 from 500-internal-server-error/cygwin

Add support for Cygwin
This commit is contained in:
Daniel Hofstetter
2025-12-25 08:30:00 +01:00
committed by GitHub
+2
View File
@@ -97,6 +97,8 @@ const HOST_OS_NAME: &str = if cfg!(all(
"illumos"
} else if cfg!(target_os = "solaris") {
"solaris"
} else if cfg!(target_os = "cygwin") {
"Cygwin"
} else {
"unknown"
};