diff options
author | Florian Pritz <bluewind@xinu.at> | 2018-11-19 00:16:31 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2018-11-19 00:16:31 +0100 |
commit | a01c7719bc535092ce3a6e83bb26159d3f117d72 (patch) | |
tree | 38ca453243910b17dc3d1c789682800b49f0e125 | |
parent | 2a72280debd8410946caa521213092d051d3cf84 (diff) | |
download | App-ArchLinux-PackagerTools-a01c7719bc535092ce3a6e83bb26159d3f117d72.tar.gz App-ArchLinux-PackagerTools-a01c7719bc535092ce3a6e83bb26159d3f117d72.tar.xz |
Add missing use statement
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | lib/App/ArchLinux/PackagerTools/Pacman.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/App/ArchLinux/PackagerTools/Pacman.pm b/lib/App/ArchLinux/PackagerTools/Pacman.pm index 8a26407..ec4f991 100644 --- a/lib/App/ArchLinux/PackagerTools/Pacman.pm +++ b/lib/App/ArchLinux/PackagerTools/Pacman.pm @@ -5,6 +5,8 @@ use autodie; use Function::Parameters; use Log::Any qw($log); +use App::ArchLinux::PackagerTools::CPAN; + =head1 NAME App::ArchLinux::PackagerTools::Pacman - Methods to interact with pacman |