commit f6411d2a66dae17e09ef5365646ab8faf1f0cbd2 Author: Nicolas Vigier boklm@torproject.org Date: Wed Nov 23 17:30:07 2016 +0100
Fix update_responses
Fix some problem introduced in the changes from #20660. --- tools/update-responses/update_responses | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/update-responses/update_responses b/tools/update-responses/update_responses index d81da4d..7b95438 100755 --- a/tools/update-responses/update_responses +++ b/tools/update-responses/update_responses @@ -255,6 +255,7 @@ sub channel_to_version { sub get_buildinfos { my ($config, $version) = @_; return if exists $config->{versions}{$version}{buildID}; + extract_martools($version); my $files = $config->{versions}{$version}{files}; foreach my $os (keys %$files) { foreach my $lang (keys %{$files->{$os}}) { @@ -610,7 +611,6 @@ my %actions = ( unless $config->{channels}{$channel}; $htdocsfiles{$channel} = { '.' => 1, '..' => 1 }; } - extract_martools; write_responses($config, @channels); write_htaccess($config, @channels); write_downloads_json($config, @channels);
tor-commits@lists.torproject.org