Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

public repo install instructions #7

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading