mirror of
https://github.com/btcsuite/btcd.git
synced 2025-02-23 14:40:44 +01:00
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.
8 lines
180 B
Markdown
8 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/...
|
|
```
|