1
1
mirror of https://github.com/OpenDiablo2/OpenDiablo2 synced 2024-09-29 22:56:07 -04:00

readme: remove https:// scheme from go get command (#110)

This commit is contained in:
Robin Eklind 2019-11-07 22:32:30 -06:00 committed by Tim Sarbin
parent ae619db363
commit e26946bd35

View File

@ -19,7 +19,7 @@ ALL OTHER TRADEMARKS ARE THE PROPERTY OF THEIR RESPECTIVE OWNERS.
## Building
To pull the project down, run `go get https://github.com/OpenDiablo2/OpenDiablo2`
To pull the project down, run `go get github.com/OpenDiablo2/OpenDiablo2`
On windows this folder will most likely be in `C:\users\(you)\go\src\github.com\essial\OpenDiablo2`
@ -34,7 +34,7 @@ You can also open the root folder in VSCode. Make sure you have the `ms-vscode.g
The imports for this project utilize `github.com/OpenDiablo2/OpenDiablo2`. This means that even if you clone the repo, changes will not be taken as it will
still pull from the main repo's files. In order to use your local version, add the following to `go.mod` in the base folder:
```
replace github.com/OpenDiablo2/OpenDiablo2 => /your/forked/import/path
replace github.com/OpenDiablo2/OpenDiablo2 => /your/forked/import/path
```
This will tell go to use your local path instead of the official repo. Be sure to exclude this change from your pull requests!