aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/filesystem/filesystem.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-09 06:25:03 +0900
committernsfisis <nsfisis@gmail.com>2026-08-09 06:25:03 +0900
commit6dd09abb33d86e1aa737667f9e15a18ed41d52e1 (patch)
tree83f961fb8657c3b5c8440caecaf61a52fdc3a2de /crates/shirabe-external-packages/src/symfony/filesystem/filesystem.rs
parent880a5eaad9dcdfd31563385f11ba1f63d38cfd14 (diff)
downloadphp-shirabe-6dd09abb33d86e1aa737667f9e15a18ed41d52e1.tar.gz
php-shirabe-6dd09abb33d86e1aa737667f9e15a18ed41d52e1.tar.zst
php-shirabe-6dd09abb33d86e1aa737667f9e15a18ed41d52e1.zip
refactor(external-packages): test for Windows with cfg!(windows)
MAIN_SEPARATOR is the path separator; PHP's `'\\' === DIRECTORY_SEPARATOR` uses it as an OS test only because PHP has no dedicated one. cfg!(windows) says what the branch actually selects on, and leaves MAIN_SEPARATOR to the sites that really join or split paths. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-external-packages/src/symfony/filesystem/filesystem.rs')
-rw-r--r--crates/shirabe-external-packages/src/symfony/filesystem/filesystem.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/filesystem/filesystem.rs b/crates/shirabe-external-packages/src/symfony/filesystem/filesystem.rs
index 0aba97fb..295a7b86 100644
--- a/crates/shirabe-external-packages/src/symfony/filesystem/filesystem.rs
+++ b/crates/shirabe-external-packages/src/symfony/filesystem/filesystem.rs
@@ -201,7 +201,7 @@ impl Filesystem {
if shirabe_php_shim::is_link(&file) {
// See https://bugs.php.net/52176
if !(shirabe_php_shim::unlink(&file)
- || std::path::MAIN_SEPARATOR != '\\'
+ || !cfg!(windows)
|| shirabe_php_shim::rmdir(&file))
&& shirabe_php_shim::file_exists(&file)
{
@@ -272,7 +272,7 @@ impl Filesystem {
let mut origin_dir = origin_dir.to_string();
let mut target_dir = target_dir.to_string();
- if std::path::MAIN_SEPARATOR == '\\' {
+ if cfg!(windows) {
origin_dir = shirabe_php_shim::strtr(&origin_dir, "/", "\\");
target_dir = shirabe_php_shim::strtr(&target_dir, "/", "\\");