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
# May require you to use sudo
$ go build .
$ cp toc /usr/local/toc
should say
$ go build .
# May require you to use sudo
$ cp toc /usr/local/bin
because the go build . step writes to a place that the user can write to, but "/usr/local/bin" is not where a user can usually write to. "/usr/local" isn't in most people's $PATH but "/usr/local/bin" is.
The text was updated successfully, but these errors were encountered:
threepistons
changed the title
Minor error in README.md
Minor errors in README.md
Feb 7, 2024
should say
because git clones to a directory called "toc".
Likewise
should say
because the
go build .
step writes to a place that the user can write to, but "/usr/local/bin" is not where a user can usually write to. "/usr/local" isn't in most people's $PATH but "/usr/local/bin" is.The text was updated successfully, but these errors were encountered: