docs: better syntax highlighting (#21959)

This commit is contained in:
Marius van der Wijden
2020-12-07 20:33:03 +01:00
committed by GitHub
parent 7c99c01876
commit e9a6e73c54
6 changed files with 45 additions and 75 deletions

View File

@ -197,7 +197,7 @@ The Chocolatey package manager provides an easy way to get the required build to
Then open an Administrator command prompt and install the build tools you need:
```shell
```
C:\Windows\system32> choco install git
C:\Windows\system32> choco install golang
C:\Windows\system32> choco install mingw
@ -207,11 +207,11 @@ Installing these packages sets up the path environment variables, you need to op
The following steps don't need Administrator privileges. First create and set up a Go workspace directory layout, then clone the source and build it.
```shell
```
C:\Users\xxx> mkdir src\github.com\ethereum
C:\Users\xxx> git clone https://github.com/ethereum/go-ethereum src\github.com\ethereum\go-ethereum
C:\Users\xxx> cd src\github.com\ethereum\go-ethereum
C:\Users\xxx> go get -u -v golang.org/x/net/context
C:\Users\xxx\src\github.com\ethereum\go-ethereum> go get -u -v golang.org/x/net/context
C:\Users\xxx\src\github.com\ethereum\go-ethereum> go install -v ./cmd/...
```