diff --git a/README_zh_CN.md b/README_zh_CN.md index 473f31fd8..959db56a0 100644 --- a/README_zh_CN.md +++ b/README_zh_CN.md @@ -75,7 +75,7 @@ service minio start ## 使用源码安装 -采用源码安装仅供开发人员和高级用户使用,如果你还没有Golang环境, 请参考 [How to install Golang](https://docs.min.io/docs/how-to-install-golang). +采用源码安装仅供开发人员和高级用户使用,如果你还没有Golang环境, 请参考 [How to install Golang](https://golang.org/doc/install). ```sh go get -u github.com/minio/minio diff --git a/browser/README.md b/browser/README.md index 33c123c6b..09542ed0f 100644 --- a/browser/README.md +++ b/browser/README.md @@ -13,7 +13,7 @@ nvm install stable ### Install `go-bindata` and `go-bindata-assetfs` -If you do not have a working Golang environment, please follow [Install Golang](https://docs.min.io/docs/how-to-install-golang) +If you do not have a working Golang environment, please follow [Install Golang](https://golang.org/doc/install) ```sh go get github.com/go-bindata/go-bindata/go-bindata diff --git a/buildscripts/checkdeps.sh b/buildscripts/checkdeps.sh index 6332c2bfb..722d6dbf8 100644 --- a/buildscripts/checkdeps.sh +++ b/buildscripts/checkdeps.sh @@ -119,7 +119,7 @@ assert_is_supported_os() { assert_check_golang_env() { if ! which go >/dev/null 2>&1; then - echo "Cannot find go binary in your PATH configuration, please refer to Go installation document at https://docs.min.io/docs/how-to-install-golang" + echo "Cannot find go binary in your PATH configuration, please refer to Go installation document at https://golang.org/doc/install" exit 1 fi diff --git a/pkg/madmin/README.md b/pkg/madmin/README.md index 72595b760..62a15eebd 100644 --- a/pkg/madmin/README.md +++ b/pkg/madmin/README.md @@ -3,7 +3,7 @@ The MinIO Admin Golang Client SDK provides APIs to manage MinIO services. This quickstart guide will show you how to install the MinIO Admin client SDK, connect to MinIO admin service, and provide a walkthrough of a simple file uploader. -This document assumes that you have a working [Golang setup](https://docs.min.io/docs/how-to-install-golang). +This document assumes that you have a working [Golang setup](https://golang.org/doc/install). ## Initialize MinIO Admin Client object.