diff options
author | Pascal Terjan <pterjan@gmail.com> | 2014-04-30 13:03:48 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2014-04-30 13:03:48 +0000 |
commit | 54002cb66c9e5d691961feebca983b07c0452e89 (patch) | |
tree | 5b6ee2775ceb22fd24b16399a82cc801abf15677 | |
parent | d938ab80960ece31f3c01921c4a8611db15dacc1 (diff) | |
download | iurt-54002cb66c9e5d691961feebca983b07c0452e89.tar iurt-54002cb66c9e5d691961feebca983b07c0452e89.tar.gz iurt-54002cb66c9e5d691961feebca983b07c0452e89.tar.bz2 iurt-54002cb66c9e5d691961feebca983b07c0452e89.tar.xz iurt-54002cb66c9e5d691961feebca983b07c0452e89.zip |
Add missing use statement
-rw-r--r-- | lib/Iurt/File.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Iurt/File.pm b/lib/Iurt/File.pm index ec77fae..6dc45d2 100644 --- a/lib/Iurt/File.pm +++ b/lib/Iurt/File.pm @@ -2,6 +2,7 @@ package Iurt::File; use base qw(Exporter); use File::Copy 'move'; +use File::Path 'make_path'; use Iurt::Util qw(plog); use strict; |