From: Ian Jackson Date: Tue, 23 Jul 2019 14:24:55 +0000 (+0100) Subject: dgit: Make cmd_archive_api_query call api_query_raw X-Git-Tag: archive/debian/9.6~16 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=1451f1261ad4420b46e90a44c3c7cae26432994e;hp=49057372811e0d8f1f3cf856a3056dfe49e9139f;p=dgit.git dgit: Make cmd_archive_api_query call api_query_raw In support of #932570. Now there is only one caller of archive_api_query_cmd. It is OK to pass `undef' because - archive_ No functional change. Signed-off-by: Ian Jackson --- diff --git a/dgit b/dgit index ed6827bc..924428cb 100755 --- a/dgit +++ b/dgit @@ -7347,10 +7347,8 @@ sub cmd_archive_api_query { badusage __ "need only 1 subpath argument" unless @ARGV==1; my ($subpath) = @ARGV; local $isuite = 'DGIT-API-QUERY-CMD'; - my @cmd = archive_api_query_cmd($subpath); - push @cmd, qw(-f); - debugcmd ">",@cmd; - exec @cmd or fail f_ "exec curl: %s\n", $!; + my $json = api_query_raw $subpath; + print $json or die "$!"; } sub repos_server_url () {