Fix remote URL
This commit is contained in:
parent
a7875ad363
commit
81c5e9b0b7
@ -412,7 +412,7 @@ impl BenchmarkRepository
|
|||||||
Err(error) => panic!("failed to initialize result Git repository for job {} in “{}”: {}", id, result_repository_path.display(), error),
|
Err(error) => panic!("failed to initialize result Git repository for job {} in “{}”: {}", id, result_repository_path.display(), error),
|
||||||
};
|
};
|
||||||
|
|
||||||
match self.repository.remote(&remote_name, &format!("../{}", remote_name))
|
match self.repository.remote(&remote_name, &format!("file://{}", std::fs::canonicalize(&result_repository_path).unwrap().display()))
|
||||||
{
|
{
|
||||||
Ok(_) => (),
|
Ok(_) => (),
|
||||||
Err(error) => panic!("cannot create remote: {}", error),
|
Err(error) => panic!("cannot create remote: {}", error),
|
||||||
|
Loading…
Reference in New Issue
Block a user