From cabc16a8d6c2f033653124668b77e66e9c576869 Mon Sep 17 00:00:00 2001 From: Observer KRypt0n_ Date: Sat, 8 Apr 2023 21:00:10 +0200 Subject: [PATCH] style: small change in `compact_launch.bat` generator --- src/game.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game.rs b/src/game.rs index 619b305..cb22e88 100644 --- a/src/game.rs +++ b/src/game.rs @@ -150,7 +150,7 @@ pub fn run() -> anyhow::Result<()> { // Bundle all windows arguments used to run the game into a single file if features.compact_launch { - std::fs::write(game_path.join("compact_launch.bat"), format!("start {}\nexit", windows_command))?; + std::fs::write(game_path.join("compact_launch.bat"), format!("start {windows_command}\nexit"))?; windows_command = String::from("compact_launch.bat"); }