From b5c49db524703323494ab7e4821fa9d227cc01eb Mon Sep 17 00:00:00 2001 From: Adam Spiers Date: Thu, 17 Nov 2011 20:10:42 +0000 Subject: [PATCH] Add debug when target to be unstowed doesn't exist --- stow.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stow.in b/stow.in index a3a4956..f1ebf88 100755 --- a/stow.in +++ b/stow.in @@ -638,6 +638,9 @@ sub unstow_node_orig { fold_tree($target, $parent); } } + else { + debug(3, "$target did not exist to be unstowed"); + } return; } @@ -775,6 +778,9 @@ sub unstow_node { ); } } + else { + debug(3, "$target did not exist to be unstowed"); + } return; }