diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-09 06:25:03 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-09 06:25:03 +0900 |
| commit | 6dd09abb33d86e1aa737667f9e15a18ed41d52e1 (patch) | |
| tree | 83f961fb8657c3b5c8440caecaf61a52fdc3a2de /crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs | |
| parent | 880a5eaad9dcdfd31563385f11ba1f63d38cfd14 (diff) | |
| download | php-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/process/pipes/windows_pipes.rs')
| -rw-r--r-- | crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs b/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs index c4236743..cf4f3414 100644 --- a/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs +++ b/crates/shirabe-external-packages/src/symfony/process/pipes/windows_pipes.rs @@ -17,7 +17,7 @@ pub struct WindowsPipes { impl WindowsPipes { pub fn new(_input: PhpMixed) -> Self { - // Windows-only path: never constructed on POSIX (MAIN_SEPARATOR is '/'). + // Windows-only path: never constructed on non-Windows targets. todo!() } } |
