diff options
Diffstat (limited to 'crates/shirabe/src/command/check_platform_reqs_command.rs')
| -rw-r--r-- | crates/shirabe/src/command/check_platform_reqs_command.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/crates/shirabe/src/command/check_platform_reqs_command.rs b/crates/shirabe/src/command/check_platform_reqs_command.rs index bfef6a5..edacf0b 100644 --- a/crates/shirabe/src/command/check_platform_reqs_command.rs +++ b/crates/shirabe/src/command/check_platform_reqs_command.rs @@ -312,10 +312,9 @@ impl CheckPlatformReqsCommand { }) .collect(); - io.write(&JsonFile::encode( - &PhpMixed::List(rows.into_iter().map(Box::new).collect()), - 448, - )); + io.write(&JsonFile::encode(&PhpMixed::List( + rows.into_iter().map(Box::new).collect(), + ))); } else { let rows: Vec<PhpMixed> = results .iter() |
