# 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 '.';