From f812e208fa64418ef25ca51cd9c5c003c3682f72 Mon Sep 17 00:00:00 2001 From: Chris Guida Date: Wed, 10 Aug 2022 18:03:20 -0500 Subject: [PATCH] fix cli install (#1720) --- backend/src/install/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/install/mod.rs b/backend/src/install/mod.rs index 9f0f2be82..bd3848c8b 100644 --- a/backend/src/install/mod.rs +++ b/backend/src/install/mod.rs @@ -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()