'pwd' -> 'current working directory'

Co-authored-by: Siddharth Dushantha <siddharth.dushantha@gmail.com>
This commit is contained in:
Paul Pfeister 2024-06-01 16:02:40 -04:00 committed by GitHub
parent c812216cc5
commit b0521d6f5c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -68,7 +68,7 @@ Sherlock. This invocation hides the progress text that Sherlock normally
outputs, and instead shows the verbose output of the tests. outputs, and instead shows the verbose output of the tests.
```console ```console
# Assumes pwd is respository root # Assumes current working directory is respository root
$ python3 -m unittest tests.all --verbose $ python3 -m unittest tests.all --verbose
``` ```

View file

@ -44,7 +44,7 @@ Building an editable (or live) package links the entry point to your current dir
Note that the version number will be 0.0.0 for pipx local builds unless manually changed in the pyproject file (it will prompt the user for an update). Note that the version number will be 0.0.0 for pipx local builds unless manually changed in the pyproject file (it will prompt the user for an update).
```bash ```bash
# Assumes repository cloned, and pwd is repository root # Assumes repository cloned, and current working directory is repository root
pipx install -e . pipx install -e .
``` ```
@ -53,7 +53,7 @@ pipx install -e .
If you'd rather not install directly to your system, you can import the module at runtime with `-m`. If you'd rather not install directly to your system, you can import the module at runtime with `-m`.
```bash ```bash
# Assumes repository cloned, and pwd is repository root # Assumes repository cloned, and current working directory is repository root
python3 -m sherlock user123 user789 python3 -m sherlock user123 user789
``` ```