Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
halcon74 committed Sep 23, 2020
1 parent 52adb14 commit 7721cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Gentoo/Portage/Q.pm
Original file line number Diff line number Diff line change
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 7721cfd

Please sign in to comment.