Skip to content

Commit 4ce9b06

Browse files
committed
Use @EXPORT_OK in Config, Environment, and ObjectUtils modules
1 parent 48e86da commit 4ce9b06

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/GitFollow/Config.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use warnings;
1111
use Exporter qw(import);
1212
use GitFollow::Environment qw($GIT_PATH);
1313

14-
our @EXPORT = qw(
14+
our @EXPORT_OK = qw(
1515
get_config
1616
has_config
1717
);

src/GitFollow/Environment.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use strict;
1010
use warnings;
1111
use Exporter qw(import);
1212

13-
our @EXPORT = qw(
13+
our @EXPORT_OK = qw(
1414
$GIT_PATH
1515
);
1616

src/GitFollow/Repository/ObjectUtils.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use warnings;
1111
use Exporter qw(import);
1212
use GitFollow::Environment qw($GIT_PATH);
1313

14-
our @EXPORT = qw(
14+
our @EXPORT_OK = qw(
1515
is_object
1616
is_repo
1717
);

0 commit comments

Comments
 (0)