mirror of
https://github.com/btcsuite/btcd.git
synced 2024-11-19 01:40:07 +01:00
c9cda53709
The use of the GO111MODULE environment variable doesn't have any effect anymore and hasn't for a couple of versions. The default was set to "on" a while back, so we can remove that variable everywhere.
9 lines
180 B
Markdown
9 lines
180 B
Markdown
# Update
|
|
|
|
* Run the following commands to update btcd, all dependencies, and install it:
|
|
|
|
```bash
|
|
cd $GOPATH/src/github.com/btcsuite/btcd
|
|
git pull && go install -v . ./cmd/...
|
|
```
|