From: Heiko Schlittermann (HS12-RIPE) Date: Thu, 29 Jun 2017 11:53:32 +0000 (+0200) Subject: Fix auto_update. (disabled auto_update was ignored) X-Git-Url: https://git.exim.org/buildfarm-client.git/commitdiff_plain/165f10a6681291e8951fc3939e064cfc01b30ed8 Fix auto_update. (disabled auto_update was ignored) --- diff --git a/run_branches b/run_branches index e5194e1..18ee919 100755 --- a/run_branches +++ b/run_branches @@ -79,9 +79,9 @@ require $buildconf; # Check if auto-update is wanted and possible eval { - if (not exists $EximBuild::Conf{auto_update} or $EximBuild::Conf{auto_update}) + if (not exists $EximBuild::conf{auto_update} or $EximBuild::conf{auto_update}) { - my $remote = $EximBuild::Conf{auto_update} // 'origin'; + my $remote = $EximBuild::conf{auto_update} // 'origin'; die "auto-update not possible: need write permissions in @{[cwd]}\n" if not -w '.';