Add debug when target to be unstowed doesn't exist
This commit is contained in:
parent
0592daf3ef
commit
b5c49db524
1 changed files with 6 additions and 0 deletions
6
stow.in
6
stow.in
|
@ -638,6 +638,9 @@ sub unstow_node_orig {
|
||||||
fold_tree($target, $parent);
|
fold_tree($target, $parent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
debug(3, "$target did not exist to be unstowed");
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -775,6 +778,9 @@ sub unstow_node {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
debug(3, "$target did not exist to be unstowed");
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue