Use all lowercase path names for storage and caching
`Microsoft/vscode` and `microsoft/vscode` point to the same directory but the repo would have been cloned twice.
This commit is contained in:
parent
1257db4e0d
commit
8fc46ab7cc
@ -204,7 +204,7 @@ fn hoc_request<T: Service>(
|
|||||||
state: web::Data<Arc<State>>,
|
state: web::Data<Arc<State>>,
|
||||||
data: web::Path<(String, String)>,
|
data: web::Path<(String, String)>,
|
||||||
) -> Result<HocResult, Error> {
|
) -> Result<HocResult, Error> {
|
||||||
let repo = format!("{}/{}", data.0, data.1);
|
let repo = format!("{}/{}", data.0.to_lowercase(), data.1.to_lowercase());
|
||||||
let service_path = format!("{}/{}", T::domain(), repo);
|
let service_path = format!("{}/{}", T::domain(), repo);
|
||||||
let path = format!("{}/{}", state.repos, service_path);
|
let path = format!("{}/{}", state.repos, service_path);
|
||||||
let file = Path::new(&path);
|
let file = Path::new(&path);
|
||||||
|
Loading…
Reference in New Issue
Block a user