feat: cache names no longer include .zip
This commit is contained in:
parent
814aaad260
commit
91cbca6b15
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ async fn upload_to_zip(
|
||||||
) -> Result<Response, (StatusCode, String)> {
|
) -> Result<Response, (StatusCode, String)> {
|
||||||
let cache_name = util::get_random_name(10);
|
let cache_name = util::get_random_name(10);
|
||||||
|
|
||||||
let archive_path = Path::new(".cache/serve").join(format!("{}.zip", &cache_name));
|
let archive_path = Path::new(".cache/serve").join(&cache_name);
|
||||||
|
|
||||||
tracing::debug!("Zipping: {:?}", &archive_path);
|
tracing::debug!("Zipping: {:?}", &archive_path);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue