cli: use the legacy server for environment with prereq detection skipped (#210952)

Fixes #210029
This commit is contained in:
Connor Peet
2024-04-22 12:18:15 -07:00
committed by GitHub
parent abc8279c11
commit 036d8e31b2

View File

@@ -64,7 +64,8 @@ impl PreReqChecker {
} else {
println!("!!! WARNING: Skipping server pre-requisite check !!!");
println!("!!! Server stability is not guaranteed. Proceed at your own risk. !!!");
(Ok(false), Ok(false))
// Use the legacy server for #210029
(Ok(true), Ok(true))
};
match (&gnu_a, &gnu_b, is_nixos) {