commit 7b0f893e548f7dc0090d22ccfa58e06940adc61c Author: Nicolas Vigier boklm@torproject.org Date: Tue Nov 8 23:10:23 2016 +0100
Bug 20612: fix path to application.ini --- 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 bef5615..9d9cce2 100755 --- a/tools/update-responses/update_responses +++ b/tools/update-responses/update_responses @@ -255,7 +255,7 @@ sub get_buildinfos { $appfile = "$tmpdir/Contents/Resources/application.ini" if -f "$tmpdir/Contents/Resources/application.ini"; exit_error "Could not find application.ini" unless $appfile; - foreach my $line (read_file("$tmpdir/application.ini")) { + foreach my $line (read_file($appfile)) { if ($line =~ m/^BuildID=(.*)$/) { $config->{versions}{$version}{buildID} = $1; return;
tbb-commits@lists.torproject.org