From 9865e695bfb23c64e9947fe6dbe88b410d124a6e Mon Sep 17 00:00:00 2001 From: Erikas Taroza Date: Tue, 19 Sep 2023 09:26:23 -0700 Subject: [PATCH] Fix expand missing code --- frb_codegen/src/commands.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/frb_codegen/src/commands.rs b/frb_codegen/src/commands.rs index 758219aed3..c697f438d7 100644 --- a/frb_codegen/src/commands.rs +++ b/frb_codegen/src/commands.rs @@ -318,7 +318,6 @@ fn run_cargo_expand(dir: &str) -> String { // remove first and last line to get rid of wrapping module let mut output = stdout.lines(); output.next(); - output.next_back(); output .collect::>() .join("\n")