fix cli install (#1720)

This commit is contained in:
Chris Guida
2022-08-10 18:03:20 -05:00
committed by GitHub
parent 9e7526c191
commit f812e208fa

View File

@@ -525,7 +525,7 @@ async fn cli_install(
let body = Body::wrap_stream(tokio_util::io::ReaderStream::new(file));
let res = ctx
.client
.post(format!("{}/rest/rpc/{}", ctx.base_url, guid,))
.post(format!("{}rest/rpc/{}", ctx.base_url, guid,))
.header(CONTENT_LENGTH, content_length)
.body(body)
.send()