Fix auto_update. (disabled auto_update was ignored)
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>
Thu, 29 Jun 2017 11:53:32 +0000 (13:53 +0200)
committerHeiko Schlittermann <hs@schlittermann.de>
Thu, 29 Jun 2017 11:53:32 +0000 (13:53 +0200)
run_branches

index e5194e1c42dcc1da4b56203821fcff97d21f189d..18ee919cc40f69efec52231914860c2b3a966732 100755 (executable)
@@ -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 '.';