From 165f10a6681291e8951fc3939e064cfc01b30ed8 Mon Sep 17 00:00:00 2001 From: "Heiko Schlittermann (HS12-RIPE)" Date: Thu, 29 Jun 2017 13:53:32 +0200 Subject: [PATCH] Fix auto_update. (disabled auto_update was ignored) --- run_branches | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 '.'; -- 2.30.2