1
1
mirror of https://github.com/docker-mailserver/docker-mailserver synced 2024-09-29 11:41:18 +02:00

Fix spacing typo (#1872)

This commit is contained in:
Semir Patel 2021-03-29 08:41:41 -05:00 committed by GitHub
parent 32c792531b
commit 0cd723208c
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

@ -9,7 +9,7 @@ When refactoring, writing or altering scripts, that is Shell and bash scripts, i
1. **Adjust your style of coding to the style that is already present**! Even if you do not like it, this is due to consistency. There was a lot of work involved in making all scripts consistent.
2. **Use `shellcheck` to check your scripts**! Your contributions are checked by GitHub Actions too, so you will need to do this. You can **lint your work with `make lint`** to check against all targets.
3. **Use the provided `.editorconfig`** file.
4. Use `/bin/bash` or `/usr/bin/envbash` instead of `/bin/sh`. Adjust the style accordingly.
4. Use `/bin/bash` instead of `/bin/sh`. Adjust the style accordingly.
5. `setup.sh` provides a good starting point to look for.
6. When appropriate, use the `set` builtin. We recommend `set -euEo pipefail` or `set -uE`.