diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2014-12-28 14:10:32 -0800 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2014-12-28 14:10:32 -0800 |
commit | 6741fd8c6e3ab0a9df08a7febd4eacc00063f0c3 (patch) | |
tree | fe77c4e2d4441a06adc8f705fde1e57a2a391b46 /src/lib/Gitolite/Conf/Load.pm | |
parent | We need to handle more variant of pubkey file names for users, plus check all... (diff) | |
download | gitolite-gentoo-6741fd8c6e3ab0a9df08a7febd4eacc00063f0c3.tar.gz gitolite-gentoo-6741fd8c6e3ab0a9df08a7febd4eacc00063f0c3.tar.bz2 gitolite-gentoo-6741fd8c6e3ab0a9df08a7febd4eacc00063f0c3.zip |
Fix check.gitolite-gentoo-3.6.2.2
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
Diffstat (limited to 'src/lib/Gitolite/Conf/Load.pm')
-rw-r--r-- | src/lib/Gitolite/Conf/Load.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Gitolite/Conf/Load.pm b/src/lib/Gitolite/Conf/Load.pm index 779c476..50f4fbb 100644 --- a/src/lib/Gitolite/Conf/Load.pm +++ b/src/lib/Gitolite/Conf/Load.pm @@ -245,7 +245,7 @@ sub env_options { if(grep(/^\Q${variable}\E$/, @{$rc{'GL_METADATA'}})) { if(length($value) > 0) { $variable =~ s/-/_/g; - _die "Metadata $variable has conflicted values: '$ENV{$variable}' vs '$value'" if(defined($ENV{$variable}) and $ENV{$variable} != $value); + _die "Metadata $variable has conflicted values: '$ENV{$variable}' vs '$value'" if(defined($ENV{$variable}) and $ENV{$variable} ne $value); $ENV{$variable} = $value; } } |