-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from OffchainLabs/update-install-readme
public repo install instructions
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,11 +81,11 @@ There are a few benefits to using separate files over other options (simple file | |
- The tool supports adding as many bullet points as you want to any section you want. But don't make up sections, | ||
unknown sections will be treated as invalid in the github workflow check. | ||
|
||
### Installing tool from private repo | ||
### Installation | ||
|
||
Currently this repo is private, so installing the tool for ez use requires a wonky set of steps: | ||
This repo is designed so that `unclog` can be simply installed with `go install`: | ||
``` | ||
$ pushd /tmp && git clone [email protected]:OffchainLabs/unclog.git && pushd unclog && go install . && popd && popd | ||
$ go install OffchainLabs/unclog@latest | ||
``` | ||
|
||
This will install the `unclog` binary on your gopath. | ||
|