v0.5.1-pre.008

This commit is contained in:
2026-08-10 11:21:07 +02:00
parent a2820062eb
commit 0e05c660c6
90 changed files with 2490 additions and 1613 deletions

View File

@@ -1,5 +1,5 @@
// file: ks-config/src/environment.rs
// version: 5
// version: 6
//! Environment-file loading and configuration placeholder resolution.
@@ -32,9 +32,9 @@ pub fn load_workspace_environment(
std::result::Result::Ok(()) => std::result::Result::Ok(EnvironmentLoadReport {
loaded_path: std::option::Option::Some(selected_path),
}),
std::result::Result::Err(error) => std::result::Result::Err(ks_core::Error::new(
std::result::Result::Err(_) => std::result::Result::Err(ks_core::Error::new(
"config_env_file_load_failed",
format!("{}: {error}", selected_path.display()),
format!("failed to load environment file {}", selected_path.display()),
)),
};
}