D10100: rhg: Print non-absolutized path in "repository {} not found" errors
SimonSapin
phabricator at mercurial-scm.org
Wed Mar 3 18:24:55 UTC 2021
SimonSapin created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
⦠like Python does
REPOSITORY
rHG Mercurial
BRANCH
default
REVISION DETAIL
https://phab.mercurial-scm.org/D10100
AFFECTED FILES
rust/hg-core/src/repo.rs
CHANGE DETAILS
diff --git a/rust/hg-core/src/repo.rs b/rust/hg-core/src/repo.rs
--- a/rust/hg-core/src/repo.rs
+++ b/rust/hg-core/src/repo.rs
@@ -58,9 +58,9 @@
if let Some(root) = explicit_path {
// Having an absolute path isnât necessary here but can help code
// elsewhere
- let root = current_dir()?.join(root);
- if root.join(".hg").is_dir() {
- Self::new_at_path(root, config)
+ let absolute_root = current_dir()?.join(root);
+ if absolute_root.join(".hg").is_dir() {
+ Self::new_at_path(absolute_root, config)
} else {
Err(RepoError::NotFound {
at: root.to_owned(),
To: SimonSapin, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
More information about the Mercurial-devel
mailing list