Junio C Hamano wrote: > +sub feature_snapshot { > + my ($ctype, $suffix, $command) = @_; > + my ($val) = git_get_project_config('snapshot'); > + if ($val eq 'gzip') { return ('gzip', 'gz'); } > + elsif ($val eq 'bzip2') { return ('bzip2', 'bz2'); } > + elsif ($val eq 'none') { return (); } > + > + return ($ctype, $suffix, $command); > +} Should it be ('x-gzip', 'gzip', 'gz') and ('x-bzip2', 'bzip2', 'bz2'), i.e. with $ctype first? -- Jakub Narebski Warsaw, Poland ShadeHawk on #git - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html