summaryrefslogtreecommitdiff
path: root/src/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmd')
-rw-r--r--src/cmd/cmd_system.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/cmd/cmd_system.rs b/src/cmd/cmd_system.rs
index 229c7f0..9696947 100644
--- a/src/cmd/cmd_system.rs
+++ b/src/cmd/cmd_system.rs
@@ -25,7 +25,6 @@ where
fn get_help_str() -> String;
/// Process the command with a specified renderer, performing any necessary post-execution processing
- #[rustfmt::skip]
fn process_with_renderer_flag(
args: Vec<String>,
ctx: JVCommandContext,
@@ -36,10 +35,7 @@ where
{
async move {
let renderer_str = renderer.as_str();
- include!(concat!(
- env!("CARGO_MANIFEST_DIR"),
- "/src/cmd/renderers/renderer_list.txt"
- ))
+ include!("renderers/renderer_list.rs")
}
}