aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/repository')
-rw-r--r--crates/shirabe/src/repository/path_repository.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/repository/path_repository.rs b/crates/shirabe/src/repository/path_repository.rs
index 46b7f95f..13c512aa 100644
--- a/crates/shirabe/src/repository/path_repository.rs
+++ b/crates/shirabe/src/repository/path_repository.rs
@@ -25,8 +25,8 @@ use crate::util::Url;
use indexmap::IndexMap;
use shirabe_external_packages::composer::pcre::Preg;
use shirabe_php_shim::{
- DIRECTORY_SEPARATOR, GLOB_BRACE, GLOB_MARK, GLOB_ONLYDIR, PhpMixed, RuntimeException, defined,
- file_exists, file_get_contents, glob_with_flags, hash, php_regex, realpath, serialize,
+ GLOB_BRACE, GLOB_MARK, GLOB_ONLYDIR, PhpMixed, RuntimeException, defined, file_exists,
+ file_get_contents, glob_with_flags, hash, php_regex, realpath, serialize,
};
#[derive(Debug)]
@@ -378,7 +378,7 @@ impl PathRepository {
Ok(glob_with_flags(&self.url, flags)
.into_iter()
.map(|val| {
- val.replace(DIRECTORY_SEPARATOR, "/")
+ val.replace(std::path::MAIN_SEPARATOR, "/")
.trim_end_matches('/')
.to_string()
})