From 2a1fdb5d9f1bf7e9dce94b72b7f56e699fc2d8e0 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sat, 29 Jan 2022 18:43:07 +0100 Subject: [PATCH] Add a blank newline, because aesthetics --- xtask/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 312e2177..a2ff57b5 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -60,6 +60,7 @@ fn bundle(target: &str, mut args: Vec) -> Result<()> { bail!("Could not find built library at {}", lib_path.display()); } + eprintln!(); if bundle_vst3 { let vst3_lib_path = Path::new("target").join(vst3_bundle_library_name(target)); let vst3_bundle_home = vst3_lib_path.parent().unwrap().parent().unwrap();