Célestin Matte <[email protected]> writes:
> @@ -1285,8 +1285,7 @@ sub get_mw_namespace_id {
> # Look at configuration file, if the record for that namespace
> is
> # already cached. Namespaces are stored in form:
> # "Name_of_namespace:Id_namespace", ex.: "File:6".
> - my @temp = split(/\n/, run_git("config --get-all remote."
> - . $remotename
> .".namespaceCache"));
> + my @temp = split(/\n/, run_git("config --get-all
> remote.${remotename}.namespaceCache"));
I tend to prefer the former, as it avoids long lines (> 80 columns)
> @@ -1339,8 +1338,7 @@ sub get_mw_namespace_id {
>
> # Store explicitely requested namespaces on disk
> if (!exists $cached_mw_namespace_id{$name}) {
> - run_git("config --add remote.". $remotename
> - .".namespaceCache \"". $name .":". $store_id ."\"");
> + run_git(qq(config --add remote.${remotename}.namespaceCache
> "${name}:${store_id}"));
Same.
--
Matthieu Moy
http://www-verimag.imag.fr/~moy/
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html