# HG changeset patch # User Kyle Lippincott # Date 1576189711 28800 # Node ID ac72e17457e588c530a8a5814a9aefb4f992e7a8 # Parent 109315c41d5e495d5f5b0d59af8bc14247ad46db fix: correct the clang-format example hgrc so that it actually works There are three changes here: * Remove -i from `command`, it causes fix to eat your file and empty it out * Add `set:` to pattern, otherwise this is interpreted as just a glob * Switch `listfile:` to `include:`; `listfile:` is relative to the current working directory, while `include:` is relative to the repo root. This makes it so that you don't receive errors when running outside of the repo root about being unable to find the file. Differential Revision: https://phab.mercurial-scm.org/D7618 diff -r 109315c41d5e -r ac72e17457e5 contrib/examples/fix.hgrc --- a/contrib/examples/fix.hgrc Wed Dec 18 00:41:12 2019 -0500 +++ b/contrib/examples/fix.hgrc Thu Dec 12 14:28:31 2019 -0800 @@ -1,6 +1,6 @@ [fix] -clang-format:command = clang-format --style file -i -clang-format:pattern = (**.c or **.cc or **.h) and not "listfile:contrib/clang-format-ignorelist" +clang-format:command = clang-format --style file +clang-format:pattern = set:(**.c or **.cc or **.h) and not "include:contrib/clang-format-ignorelist" rustfmt:command = rustfmt rustfmt:pattern = set:**.rs