diff options
Diffstat (limited to 'crates/shirabe/src/command/run_script_command.rs')
| -rw-r--r-- | crates/shirabe/src/command/run_script_command.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/shirabe/src/command/run_script_command.rs b/crates/shirabe/src/command/run_script_command.rs index 141b458..5a8f628 100644 --- a/crates/shirabe/src/command/run_script_command.rs +++ b/crates/shirabe/src/command/run_script_command.rs @@ -76,8 +76,8 @@ impl RunScriptCommand { .iter() .map(|(name, desc)| { PhpMixed::List(vec![ - Box::new(PhpMixed::String(format!(" {}", name))), - Box::new(PhpMixed::String(desc.clone())), + PhpMixed::String(format!(" {}", name)), + PhpMixed::String(desc.clone()), ]) }) .collect(); |
