style: small change in compact_launch.bat generator

This commit is contained in:
Observer KRypt0n_ 2023-04-08 21:00:10 +02:00
parent 06f0f486b9
commit cabc16a8d6
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2

View file

@ -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");
}