release setup

This commit is contained in:
Robin Appelman 2025-10-13 19:32:09 +02:00
commit 09de7e6f00
4 changed files with 38 additions and 6 deletions

View file

@ -133,11 +133,7 @@ fn maybe_link(source: Option<&str>, target: Option<&str>) {
}
match symlink(source, target) {
Ok(()) => {
info!(
to = target,
from = source,
"created symlink"
);
info!(to = target, from = source, "created symlink");
}
Err(error) => {
error!(%error, "failed to link target");