1 Commits
v0.1.1 ... main

Author SHA1 Message Date
de913cd375 chore: should be space instead
All checks were successful
continuous-integration/drone/push Build is passing
2025-08-04 11:42:31 +02:00

View File

@@ -341,7 +341,7 @@ pub async fn apply(input: &str, options: ApplyOptions) -> anyhow::Result<()> {
.map(|i| i.display().to_string()) .map(|i| i.display().to_string())
.collect::<Vec<_>>(); .collect::<Vec<_>>();
file.write_all(open_files.join("\n").as_bytes()) file.write_all(open_files.join(" ").as_bytes())
.await .await
.context("write chosen files")?; .context("write chosen files")?;
file.flush().await.context("flush chosen file")?; file.flush().await.context("flush chosen file")?;