diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-26 02:26:08 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-26 02:26:08 +0900 |
| commit | 8c4dc6cd48457f154eb067f296d79ef911573c91 (patch) | |
| tree | 10acc2f4f64813f9b206d474306e5680234ec73d /crates/shirabe/src/command/base_command.rs | |
| parent | 6c89c720d9e4728c288e3c66ffb7dcb4cba5121c (diff) | |
| download | php-shirabe-8c4dc6cd48457f154eb067f296d79ef911573c91.tar.gz php-shirabe-8c4dc6cd48457f154eb067f296d79ef911573c91.tar.zst php-shirabe-8c4dc6cd48457f154eb067f296d79ef911573c91.zip | |
fix(check-platform-reqs-command): add PlatformRepository to existing composite
execute nested the already-built InstalledRepository inside a second
InstalledRepository, tripping the assertion that an InstalledRepository may not
contain another. PHP adds a PlatformRepository to the existing composite via
addRepository; do the same.
Un-ignores CheckPlatformReqsCommandTest::test_failed_platform_requirement.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/command/base_command.rs')
| -rw-r--r-- | crates/shirabe/src/command/base_command.rs | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/crates/shirabe/src/command/base_command.rs b/crates/shirabe/src/command/base_command.rs index f754d0a..f3c88e5 100644 --- a/crates/shirabe/src/command/base_command.rs +++ b/crates/shirabe/src/command/base_command.rs @@ -583,12 +583,7 @@ impl BaseCommand for BaseCommandData { .expect("Table::set_style I/O cannot fail") .expect("'compact' is a built-in table style"); renderer - .set_rows( - table - .into_iter() - .map(Into::into) - .collect(), - ) + .set_rows(table.into_iter().map(Into::into).collect()) .render(); let _ = TableSeparator::new(); } |
