[Updated] D11941: rhg: Properly format warnings related to ignore patterns
SimonSapin
phabricator at mercurial-scm.org
Mon Dec 20 13:34:33 UTC 2021
Closed by commit rHGc9abfb80b4e3: rhg: Properly format warnings related to ignore patterns (authored by SimonSapin).
This revision was automatically updated to reflect the committed changes.
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D11941?vs=31550&id=31554
CHANGES SINCE LAST ACTION
https://phab.mercurial-scm.org/D11941/new/
REVISION DETAIL
https://phab.mercurial-scm.org/D11941
AFFECTED FILES
rust/rhg/src/commands/status.rs
CHANGE DETAILS
diff --git a/rust/rhg/src/commands/status.rs b/rust/rhg/src/commands/status.rs
--- a/rust/rhg/src/commands/status.rs
+++ b/rust/rhg/src/commands/status.rs
@@ -22,10 +22,11 @@
use hg::matchers::AlwaysMatcher;
use hg::repo::Repo;
use hg::utils::files::get_bytes_from_os_string;
+use hg::utils::files::get_bytes_from_path;
use hg::utils::files::get_path_from_bytes;
use hg::utils::hg_path::{hg_path_to_path_buf, HgPath};
use hg::StatusOptions;
-use log::{info, warn};
+use log::info;
use std::io;
use std::path::PathBuf;
@@ -233,8 +234,29 @@
ignore_files(repo, config),
options,
)?;
- if !pattern_warnings.is_empty() {
- warn!("Pattern warnings: {:?}", &pattern_warnings);
+ for warning in pattern_warnings {
+ match warning {
+ hg::PatternFileWarning::InvalidSyntax(path, syntax) => ui
+ .write_stderr(&format_bytes!(
+ b"{}: ignoring invalid syntax '{}'\n",
+ get_bytes_from_path(path),
+ &*syntax
+ ))?,
+ hg::PatternFileWarning::NoSuchFile(path) => {
+ let path = if let Ok(relative) =
+ path.strip_prefix(repo.working_directory_path())
+ {
+ relative
+ } else {
+ &*path
+ };
+ ui.write_stderr(&format_bytes!(
+ b"skipping unreadable pattern file '{}': \
+ No such file or directory\n",
+ get_bytes_from_path(path),
+ ))?
+ }
+ }
}
for (path, error) in ds_status.bad {
To: SimonSapin, #hg-reviewers, Alphare
Cc: Alphare, mercurial-patches
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.mercurial-scm.org/pipermail/mercurial-patches/attachments/20211220/69ec9fd1/attachment-0002.html>
More information about the Mercurial-patches
mailing list