We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3dbdfc commit 15cf471Copy full SHA for 15cf471
2 files changed
CONTRIBUTING.md
@@ -50,7 +50,7 @@ request on the repo and our GitHub Actions CI will run ShellCheck for you.
50
- Don’t use `sed`.
51
- Use `bash`'s built-in [parameter expansion](http://wiki.bash-hackers.org/syntax/pe).
52
- Don’t use `cat`.
53
- - Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)")`).
+ - Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)"`).
54
- Don’t use `grep "pattern" | awk '{ printf }'`.
55
- Use `awk '/pattern/ { printf }'`
56
- Don’t use `wc`.
Makefile
@@ -2,7 +2,7 @@ PREFIX = /usr
2
MANDIR = $(PREFIX)/share/man
3
4
all:
5
- @echo Run \'make install\' to install Neofetch.
+ @printf "Run 'make install' to install Neofetch.\n"
6
7
install:
8
@mkdir -p $(DESTDIR)$(PREFIX)/bin
0 commit comments