summaryrefslogtreecommitdiff
path: root/perl5/Local
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-08-22 18:00:21 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-08-22 18:00:21 -0700
commitcf90306f84dad39b184692b2ab862eea998e27c2 (patch)
tree020032364db11b84851353a7d2e54f9b18c6c930 /perl5/Local
parent42edf6b17449f09048e432584d463212f8aa02c2 (diff)
downloaddotfiles-cf90306f84dad39b184692b2ab862eea998e27c2.tar.gz
update some more 'use lib' paths
Diffstat (limited to 'perl5/Local')
-rw-r--r--perl5/Local/MrRepo.pm2
-rw-r--r--perl5/Local/MrRepo/Repo/Git.pm2
-rw-r--r--perl5/Local/MrRepo/Repo/Git/Annex.pm2
3 files changed, 3 insertions, 3 deletions
diff --git a/perl5/Local/MrRepo.pm b/perl5/Local/MrRepo.pm
index 36ef819d..ce82aeef 100644
--- a/perl5/Local/MrRepo.pm
+++ b/perl5/Local/MrRepo.pm
@@ -17,7 +17,7 @@ package Local::MrRepo;
use strict;
use warnings;
-use lib "$ENV{HOME}/lib/perl5";
+use lib "$ENV{HOME}/src/dotfiles/perl5";
use Cwd;
use File::Spec::Functions qw(catfile rel2abs);
diff --git a/perl5/Local/MrRepo/Repo/Git.pm b/perl5/Local/MrRepo/Repo/Git.pm
index edde2c74..5c9737bc 100644
--- a/perl5/Local/MrRepo/Repo/Git.pm
+++ b/perl5/Local/MrRepo/Repo/Git.pm
@@ -18,7 +18,7 @@ package Local::MrRepo::Repo::Git;
use 5.018;
use strict;
use warnings;
-use lib "$ENV{HOME}/lib/perl5";
+use lib "$ENV{HOME}/src/dotfiles/perl5";
use parent 'Local::MrRepo::Repo';
use Exporter 'import';
diff --git a/perl5/Local/MrRepo/Repo/Git/Annex.pm b/perl5/Local/MrRepo/Repo/Git/Annex.pm
index 91d2d996..64fbad44 100644
--- a/perl5/Local/MrRepo/Repo/Git/Annex.pm
+++ b/perl5/Local/MrRepo/Repo/Git/Annex.pm
@@ -18,7 +18,7 @@ package Local::MrRepo::Repo::Git::Annex;
use 5.018;
use strict;
use warnings;
-use lib "$ENV{HOME}/lib/perl5";
+use lib "$ENV{HOME}/src/dotfiles/perl5";
use parent 'Local::MrRepo::Repo::Git';
use App::annex_review_unused;