gecko-dev/python/mach
Mitchell Hentges 66008bc119 Bug 1702279: Sentry should patch absolute paths without leading slash r=sheehan
Due to strange module-name generation we do (e.g.:
`mach.commands.be68b9824a51408e815262b2e8f21d6b`), Sentry's conversion
of absolute paths to local paths fails - instead, the path remains
absolute, but without the leading forward slash. (Except on Windows,
where `c:/` is maintained).

We resolve this by not requiring the leading slash when patching
absolute paths.

Differential Revision: https://phabricator.services.mozilla.com/D110436
2021-04-01 16:30:57 +00:00
..
docs Bug 1696251 - Move metrics_path parameter from @CommandProvider to @Command/@SubCommand . r=mhentges 2021-03-17 14:14:14 +00:00
mach Bug 1702279: Sentry should patch absolute paths without leading slash r=sheehan 2021-04-01 16:30:57 +00:00
README.rst
bash-completion.sh
metrics.yaml Bug 1655845 - Collect OS version information in `mach` telemetry r=firefox-build-system-reviewers,dmajor 2020-10-27 20:35:17 +00:00
pings.yaml Bug 1654074: Publish glean handle to mach commands r=firefox-build-system-reviewers,rstewart 2020-09-15 21:15:20 +00:00
setup.cfg
setup.py Bug 1654103: Standardize on Black for Python code in `mozilla-central`. 2020-10-26 18:34:53 +00:00

README.rst

====
mach
====

Mach (German for *do*) is a generic command dispatcher for the command
line.

To use mach, you install the mach core (a Python package), create an
executable *driver* script (named whatever you want), and write mach
commands. When the *driver* is executed, mach dispatches to the
requested command handler automatically.

To learn more, read the docs in ``docs/``.