From 7c0bb53bffd474baf23efcedc1cb16d72c0e4954 Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Tue, 22 Nov 2011 15:46:05 +0000 Subject: [PATCH] Be clearer when we're not actually (un)stowing, just planning. --- lib/Stow.pm.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Stow.pm.in b/lib/Stow.pm.in index 113dec7..d25fecd 100755 --- a/lib/Stow.pm.in +++ b/lib/Stow.pm.in @@ -232,7 +232,7 @@ sub plan_unstow { if (not -d join_paths($self->{stow_path}, $package)) { error("The given package name ($package) is not in your stow path $self->{stow_path}"); } - debug(2, "Unstowing package $package..."); + debug(2, "Planning unstow of package $package..."); if ($self->{'compat'}) { $self->unstow_contents_orig( join_paths($self->{stow_path}, $package), # path to package @@ -245,7 +245,7 @@ sub plan_unstow { '.', # target is current_dir ); } - debug(2, "Unstowing package $package... done"); + debug(2, "Planning unstow of package $package... done"); } }); } @@ -267,13 +267,13 @@ sub plan_stow { if (not -d join_paths($self->{stow_path}, $package)) { error("The given package name ($package) is not in your stow path $self->{stow_path}"); } - debug(2, "Stowing package $package..."); + debug(2, "Planning stow of package $package..."); $self->stow_contents( join_paths($self->{stow_path}, $package), # path package '.', # target is current dir join_paths($self->{stow_path}, $package), # source from target ); - debug(2, "Stowing package $package... done"); + debug(2, "Planning stow of package $package... done"); } }); }