This commit is contained in:
swrup 2026-02-10 15:18:17 +01:00
parent 8dc7114bae
commit ccd10bb08b
2 changed files with 7 additions and 2 deletions

View file

@ -163,7 +163,7 @@ let read_master_key_file filename =
let download ~output ~url =
let open Bos in
OS.Cmd.run Cmd.(v "curl" % "-s" % "-o" % output % "-X" % "GET" % url)
OS.Cmd.run Cmd.(v "curl" % "--silent" % "-o" % output % "-X" % "GET" % url)
|> unwrap_err_msg
let upload ~input ~url =
@ -171,6 +171,7 @@ let upload ~input ~url =
OS.Cmd.run
Cmd.(
v "curl"
% "--silent"
% "-i"
% "-X"
% "POST"