summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-02-02 00:02:47 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-02-02 00:02:47 -0700
commit9ec5bbf4d5622b67ce069c0006e5b3979e86c19e (patch)
tree884562caea35cb8b7044b4c2c8006ab715a6cdc1 /lib
parent1762ef5b20efac627e0926605e3075b9fb173782 (diff)
downloadp5-Git-Annex-9ec5bbf4d5622b67ce069c0006e5b3979e86c19e.tar.gz
tweak
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'lib')
-rw-r--r--lib/Git/Annex.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Git/Annex.pm b/lib/Git/Annex.pm
index 19e818a..c872cf5 100644
--- a/lib/Git/Annex.pm
+++ b/lib/Git/Annex.pm
@@ -253,7 +253,7 @@ sub _clear_unused_cache {
sub _git_path {
my ($self, @input) = @_;
my ($path) = $self->git->rev_parse({ git_path => 1 }, catfile @input);
- rel2abs($path, $self->toplevel);
+ rel2abs $path, $self->toplevel;
}
around BUILDARGS => sub {