Skip to content

Commit

Permalink
Merge 7721cfd into 52adb14
Browse files Browse the repository at this point in the history
  • Loading branch information
halcon74 committed Sep 23, 2020
2 parents 52adb14 + 7721cfd commit 129ecce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Gentoo/Portage/Q.pm
Expand Up @@ -61,7 +61,7 @@ Returns a specific environment variable as exists prior to ebuild.sh.
sub envvar {
my ( $self, $var ) = @_;

return $ENV{$var} if defined $ENV{$var}; # prefer to use custom from ENV
return $ENV{$var} if $ENV{$var}; # prefer to use custom from ENV

$self->{_portage_env} ||= $self->_read_portage_env();

Expand Down

0 comments on commit 129ecce

Please sign in to comment.