Vendor in build script

This commit is contained in:
Gregory Schier
2024-08-09 08:51:21 -07:00
parent d885e6cb0a
commit d9a7dba2e2
2 changed files with 5 additions and 6 deletions

View File

@@ -724,10 +724,10 @@ async fn cmd_filter_response(
) -> Result<FilterResponse, String> {
let response = get_http_response(&w, response_id)
.await
.expect("Failed to get response");
.expect("Failed to get http response");
if let None = response.body_path {
return Err("Response body not found".to_string());
return Err("Response body path not set".to_string());
}
let mut content_type = "".to_string();