(minor) add quotes to make repo name stand out in error message
This commit is contained in:
parent
1ad0a761f7
commit
6b65e7853f
|
@ -209,7 +209,7 @@ sub load_1 {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( -f "gl-conf" ) {
|
if ( -f "gl-conf" ) {
|
||||||
_warn "split conf not set, gl-conf present for $repo" if not $split_conf{$repo};
|
_warn "split conf not set, gl-conf present for '$repo'" if not $split_conf{$repo};
|
||||||
|
|
||||||
my $cc = "gl-conf";
|
my $cc = "gl-conf";
|
||||||
_die "parse $cc failed: " . ( $! or $@ ) unless do $cc;
|
_die "parse $cc failed: " . ( $! or $@ ) unless do $cc;
|
||||||
|
@ -218,7 +218,7 @@ sub load_1 {
|
||||||
$repos{$repo} = $one_repo{$repo};
|
$repos{$repo} = $one_repo{$repo};
|
||||||
$configs{$repo} = $one_config{$repo} if $one_config{$repo};
|
$configs{$repo} = $one_config{$repo} if $one_config{$repo};
|
||||||
} else {
|
} else {
|
||||||
_die "split conf set, gl-conf not present for $repo" if $split_conf{$repo};
|
_die "split conf set, gl-conf not present for '$repo'" if $split_conf{$repo};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue