merged from staging branch
This commit is contained in:
parent
cdb9fff326
commit
df05aa01df
3 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
1.1.2
|
||||
Update Makefile & CONTRIBUTING.md (dylanaraps#2245 & dylanaraps#2246)
|
||||
|
||||
1.1.1
|
||||
Add Hybrid Linux (dylanaraps#2239)
|
||||
Revert 6462954 (own)
|
||||
|
|
|
@ -50,7 +50,7 @@ request on the repo and our Travis.ci hook will run ShellCheck for you.
|
|||
- Don’t use `sed`.
|
||||
- Use `bash`'s built-in [parameter expansion](http://wiki.bash-hackers.org/syntax/pe).
|
||||
- Don’t use `cat`.
|
||||
- Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)")`).
|
||||
- Use `bash`'s built-in syntax (`file="$(< /path/to/file.txt)"`).
|
||||
- Don’t use `grep "pattern" | awk '{ printf }'`.
|
||||
- Use `awk '/pattern/ { printf }'`
|
||||
- Don’t use `wc`.
|
||||
|
|
2
Makefile
2
Makefile
|
@ -2,7 +2,7 @@ PREFIX = /usr
|
|||
MANDIR = $(PREFIX)/share/man
|
||||
|
||||
all:
|
||||
@echo Run \'make install\' to install Unifetch.
|
||||
@printf "Run 'make install' to install UniFetch.\n"
|
||||
|
||||
install:
|
||||
@mkdir -p $(DESTDIR)$(PREFIX)/bin
|
||||
|
|
Loading…
Add table
Reference in a new issue