Jakub Narebski [off-list ref] writes:
Petr Baudis [off-list ref] writes:
quoted
This is important for the list of clone urls, where if there are
no per-repository clone URL configured, the default base URLs
are never used for URL construction with this patch.
Thanks.
quoted
@@ -1512,7 +1512,7 @@ sub config_to_int {
sub config_to_multi {
my $val = shift;
- return ref($val) ? $val : [ $val ];
+ return ref($val) ? $val : $val ? [ $val ] : [];
}
Shouldn't it be
+ return ref($val) ? $val : defined($val) ? [ $val ] : [];
I think so. Pasky?