From 849ee4f18a36b4d356e97f4323a768ac268490ac Mon Sep 17 00:00:00 2001 From: juliancoffee Date: Tue, 8 Jun 2021 01:26:59 +0300 Subject: [PATCH] Fix find_root() search in case if .git isn't dir --- common/assets/src/lib.rs | 7 ++++--- voxygen/i18n/src/bin/i18n-check.rs | 2 +- voxygen/i18n/src/data.rs | 22 +++------------------- 3 files changed, 8 insertions(+), 23 deletions(-) diff --git a/common/assets/src/lib.rs b/common/assets/src/lib.rs index 65c679eaf1..ed87eb2885 100644 --- a/common/assets/src/lib.rs +++ b/common/assets/src/lib.rs @@ -128,15 +128,16 @@ impl Asset for DotVoxAsset { const EXTENSION: &'static str = "vox"; } -fn find_root() -> Option { +/// Return path to repository root by searching 10 directories back +pub fn find_root() -> Option { std::env::current_dir().map_or(None, |path| { // If we are in the root, push path - if path.join(".git").is_dir() { + if path.join(".git").exists() { return Some(path); } // Search .git directory in parent directries for ancestor in path.ancestors().take(10) { - if ancestor.join(".git").is_dir() { + if ancestor.join(".git").exists() { return Some(ancestor.to_path_buf()); } } diff --git a/voxygen/i18n/src/bin/i18n-check.rs b/voxygen/i18n/src/bin/i18n-check.rs index 465bfd4586..cc45d256bb 100644 --- a/voxygen/i18n/src/bin/i18n-check.rs +++ b/voxygen/i18n/src/bin/i18n-check.rs @@ -31,7 +31,7 @@ fn main() { .get_matches(); // Generate paths - let root = veloren_i18n::find_root().expect("Failed to find root of repository"); + let root = common_assets::find_root().expect("Failed to find root of repository"); let asset_path = Path::new("assets/voxygen/i18n/"); if let Some(code) = matches.value_of("CODE") { diff --git a/voxygen/i18n/src/data.rs b/voxygen/i18n/src/data.rs index 9bf4de78d0..6bee98faca 100644 --- a/voxygen/i18n/src/data.rs +++ b/voxygen/i18n/src/data.rs @@ -388,23 +388,6 @@ pub fn list_localizations() -> Vec { /// Start hot reloading of i18n assets pub fn start_hot_reloading() { assets::start_hot_reloading(); } -/// Return path to repository by searching 10 directories back -pub fn find_root() -> Option { - std::env::current_dir().map_or(None, |path| { - // If we are in the root, push path - if path.join(".git").is_dir() { - return Some(path); - } - // Search .git directory in parent directries - for ancestor in path.ancestors().take(10) { - if ancestor.join(".git").is_dir() { - return Some(ancestor.to_path_buf()); - } - } - None - }) -} - /// List localization directories as a `PathBuf` vector pub fn i18n_directories(i18n_dir: &Path) -> Vec { fs::read_dir(i18n_dir) @@ -416,6 +399,7 @@ pub fn i18n_directories(i18n_dir: &Path) -> Vec { #[cfg(test)] mod tests { + use super::assets; // Test that localization list is loaded (not empty) #[test] fn test_localization_list() { @@ -435,7 +419,7 @@ mod tests { fn verify_all_localizations() { // Generate paths let i18n_asset_path = std::path::Path::new("assets/voxygen/i18n/"); - let root_dir = super::find_root().expect("Failed to discover repository root"); + let root_dir = assets::find_root().expect("Failed to discover repository root"); crate::verification::verify_all_localizations(&root_dir, &i18n_asset_path); } @@ -447,7 +431,7 @@ mod tests { let be_verbose = true; // Generate paths let i18n_asset_path = std::path::Path::new("assets/voxygen/i18n/"); - let root_dir = super::find_root().expect("Failed to discover repository root"); + let root_dir = assets::find_root().expect("Failed to discover repository root"); crate::analysis::test_all_localizations(&root_dir, &i18n_asset_path, be_verbose); } }