commit 418f5d66e9d064530b1a4d7ce5a96b03980ea14f 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 a89a18a..5f8eb36 100755 --- a/tools/update-responses/update_responses +++ b/tools/update-responses/update_responses @@ -265,7 +265,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;