From e0212d4f4977bf203108887a48c684ed1b8d4f4a Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Mon, 1 Apr 2024 00:35:35 +0100 Subject: [PATCH] stow_node(): fix odd whitespace --- lib/Stow.pm.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Stow.pm.in b/lib/Stow.pm.in index 8391a4a..3163621 100755 --- a/lib/Stow.pm.in +++ b/lib/Stow.pm.in @@ -557,7 +557,8 @@ sub stow_node { $self->do_link($source, $target); } elsif ($self->is_a_dir(join_paths(parent($target), $existing_source)) && - $self->is_a_dir(join_paths(parent($target), $source)) ) { + $self->is_a_dir(join_paths(parent($target), $source))) + { # If the existing link points to a directory, # and the proposed new link points to a directory,