From dc712899412f72713ca5cbc1ce230a1bacf89850 Mon Sep 17 00:00:00 2001 From: cburroughs Date: Tue, 17 Oct 2023 12:01:19 -0400 Subject: [PATCH] docs: remove reference to `use_deprecated_directory_cli_args_semantics` (#20041) This options was removed in 2.15 by #16630. --- docs/markdown/Using Pants/concepts/goals.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/markdown/Using Pants/concepts/goals.md b/docs/markdown/Using Pants/concepts/goals.md index a67cebfc50b..c4e4f40c1db 100644 --- a/docs/markdown/Using Pants/concepts/goals.md +++ b/docs/markdown/Using Pants/concepts/goals.md @@ -67,10 +67,6 @@ You can address targets from the root of the repository by using plain `::` and To ignore something, prefix the argument with `-`. For example, `pants test :: -project/integration_tests` will run all your tests except for those in the directory `project/integration_tests` and `pants package project:: -project:` will package all targets in the subdirectories of the `project` directory, recursively, except for those declared directly under the `project` directory. -> 🚧 Set `[GLOBAL].use_deprecated_directory_cli_args_semantics = false` in `pants.toml` -> -> This will become the default in Pants 2.14. - > 📘 Tip: advanced target selection, such as running over changed files > > See [Advanced target selection](doc:advanced-target-selection) for alternative techniques to specify which files/targets to run on.