link_dest_within_stow_dir: rename $path to $pkg_subpath
$path is horribly vague, so rename to be more informative.
This commit is contained in:
parent
170d161692
commit
6b9bbc9cbb
1 changed files with 4 additions and 4 deletions
|
@ -1043,8 +1043,8 @@ Detect whether symlink destination is within current stow dir
|
||||||
|
|
||||||
=back
|
=back
|
||||||
|
|
||||||
Returns C<($package, $path)> - package within the current stow dir
|
Returns C<($package, $pkg_subpath)> - package within the current stow
|
||||||
and subpath within that package which the symlink points to.
|
dir and subpath within that package which the symlink points to.
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
|
@ -1063,8 +1063,8 @@ sub link_dest_within_stow_dir {
|
||||||
debug(4, 4, "remaining after removing $self->{stow_path}: $link_dest");
|
debug(4, 4, "remaining after removing $self->{stow_path}: $link_dest");
|
||||||
my @dirs = File::Spec->splitdir($link_dest);
|
my @dirs = File::Spec->splitdir($link_dest);
|
||||||
my $package = shift @dirs;
|
my $package = shift @dirs;
|
||||||
my $path = File::Spec->catdir(@dirs);
|
my $pkg_subpath = File::Spec->catdir(@dirs);
|
||||||
return ($package, $path);
|
return ($package, $pkg_subpath);
|
||||||
}
|
}
|
||||||
|
|
||||||
=head2 find_containing_marked_stow_dir($pkg_path_from_cwd)
|
=head2 find_containing_marked_stow_dir($pkg_path_from_cwd)
|
||||||
|
|
Loading…
Reference in a new issue