Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 4 additions & 4 deletions content/en/docs/contributing/build-on-centos.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ The following has been verified to work on __CentOS 7__. If you are new to Vites

## Install Dependencies

### Install Go 1.13+
### Install Go 1.15+

[Download and install](http://golang.org/doc/install) Golang 1.13. For example, at writing:
[Download and install](http://golang.org/doc/install) Golang 1.15. For example, at writing:

```
curl -O https://dl.google.com/go/go1.13.9.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.13.9.linux-amd64.tar.gz
curl -O https://golang.org/dl/go1.15.6.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.15.6.linux-amd64.tar.gz
```

Make sure to add go to your bashrc:
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/contributing/build-on-ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ The following has been verified to work on __Ubuntu 19.10__ and __Debian 10__. I

### Install Go 1.13+

[Download and install](http://golang.org/doc/install) Golang 1.13. For example, at writing:
[Download and install](http://golang.org/doc/install) Golang 1.15. For example, at writing:

```
curl -O https://dl.google.com/go/go1.13.9.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.13.9.linux-amd64.tar.gz
curl -O https://dl.google.com/go/go1.15.6.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.15.6.linux-amd64.tar.gz
```

Make sure to add go to your bashrc:
Expand Down
2 changes: 1 addition & 1 deletion content/zh/docs/contributing/build-from-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ featured: true

Vitess依赖如下软件和库:

1. [Install Go 1.11+](http://golang.org/doc/install).
1. [Install Go 1.15+](http://golang.org/doc/install).

2. Install MySQL:
```bash
Expand Down