From 8d7b7a73107cf51eeca0449784b72bbdac35c992 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Sun, 1 Nov 2020 17:46:01 +0000 Subject: [PATCH] foldable(): fix debug indentation --- lib/Stow.pm.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Stow.pm.in b/lib/Stow.pm.in index 8a24ae6..e8f5e9d 100755 --- a/lib/Stow.pm.in +++ b/lib/Stow.pm.in @@ -1055,9 +1055,9 @@ sub foldable { my $self = shift; my ($target) = @_; - debug(3, "--- Is $target foldable?"); + debug(3, " Is $target foldable?"); if ($self->{'no-folding'}) { - debug(3, "--- no because --no-folding enabled"); + debug(3, " no because --no-folding enabled"); return ''; } @@ -1104,7 +1104,7 @@ sub foldable { # If the resulting path is owned by stow, we can fold it if ($self->path_owned_by_package($target, $parent)) { - debug(3, "--- $target is foldable"); + debug(3, " $target is foldable"); return $parent; } else {