1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-12-01 22:30:09 +02:00

Removed extraneous use lib directives from Perl modules.

Suggested by Devrim Gündüz.
This commit is contained in:
David Steele
2016-11-04 13:56:26 +02:00
parent 171c5835bb
commit f43e5bc52d
36 changed files with 26 additions and 41 deletions

View File

@@ -16,14 +16,12 @@ use File::Copy;
use POSIX qw(strftime);
use Storable qw(dclone);
use lib dirname($0) . '/../lib';
use pgBackRest::Common::Exception;
use pgBackRest::Common::Log;
use pgBackRest::Common::String;
use pgBackRest::FileCommon;
use pgBackRest::Version;
use lib dirname($0) . '/../test/lib';
use pgBackRestTest::Common::ExecuteTest;
use BackRestDoc::Common::DocConfig;