1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-25 21:42:33 +03:00

MSVC: Add "use File::Path qw(rmtree)".

My back-patch of commit 10b72deafea5972edcafb9eb3f97154f32ccd340 added
calls to File::Path::rmtree(), but v10 and older had not been importing
that symbol.  Back-patch to v10, 9.6 and 9.5.
This commit is contained in:
Noah Misch 2019-05-28 19:28:36 -07:00
parent c44e9bc3a1
commit b31d88b010

View File

@ -10,6 +10,7 @@ use Cwd;
use File::Basename;
use File::Copy;
use File::Find ();
use File::Path qw(rmtree);
use File::Spec;
BEGIN { use lib File::Spec->rel2abs(dirname(__FILE__)); }