Import the package needed for rmtree().

This commit is contained in:
David Anderson 2014-02-12 23:30:03 -08:00
parent 3b2a005a92
commit ea051bddfb

View File

@ -3,6 +3,7 @@
use strict; use strict;
use Cwd; use Cwd;
use File::Basename; use File::Basename;
use File::Path;
my ($myself, $path) = fileparse($0); my ($myself, $path) = fileparse($0);
chdir($path); chdir($path);