From 1451f1261ad4420b46e90a44c3c7cae26432994e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 23 Jul 2019 15:24:55 +0100 Subject: [PATCH 1/1] 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 --- dgit | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 () { -- 2.30.2