You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: manuscript/11-tips-and-tricks.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,7 @@ Show a notice message to user to install entr if not installed ons system:
125
125
{language=shell, line-numbers=off}
126
126
$ if command -v entr > /dev/null; then find . -print | grep -i '.*[.]go' | entr -c go test ./...; else go test ./...; echo "\nInstall entr(1) to automatically rebuild documentation when files change. \nSee http://entrproject.org/"; fi
127
127
128
-
Here's why you want patterns like that, you can put it into a [`Makefile`](https://en.wikipedia.org/wiki/Makefile)
128
+
Here's why you want patterns like that: you can put it into a [`Makefile`](https://en.wikipedia.org/wiki/Makefile)
129
129
and commit it to your project's [VCS](https://en.wikipedia.org/wiki/Version_control)
130
130
so you and other developers can have access to this reusable command across
131
131
different UNIX-like systems, with and without that certain program installed.
0 commit comments