From de56909d559394449e1b1cdd981828b0b602505a Mon Sep 17 00:00:00 2001 From: Harshavardhana Date: Mon, 11 May 2015 16:43:38 -0700 Subject: [PATCH] More scripts and code from Minio-io to minio --- CONTRIBUTING.md | 2 +- Makefile | 2 +- README.md | 6 +++--- buildscripts/checkdeps.sh | 6 +++--- pkg/erasure/README.md | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1784bbc84..0d454c4f7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,5 +1,5 @@ ### Setup your Minio Github Repository -Fork [Minio upstream](https://github.com/Minio-io/minio/fork) source repository to your own personal repository. Copy the URL and pass it to ``go get`` command. Go uses git to clone a copy into your project workspace folder. +Fork [Minio upstream](https://github.com/minio/minio/fork) source repository to your own personal repository. Copy the URL and pass it to ``go get`` command. Go uses git to clone a copy into your project workspace folder. ```sh $ mkdir -p $GOPATH/src/github.com/minio $ cd $GOPATH/src/github.com/minio diff --git a/Makefile b/Makefile index 9e7fe288a..fc6d4ed0b 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ checkdeps: checkgopath: @echo "Checking if project is at ${GOPATH}" - @for mcpath in $(echo ${GOPATH} | sed 's/:/\n/g' | grep -v Godeps); do if [ ! -d ${mcpath}/src/github.com/minio/minio ]; then echo "Project not found in ${mcpath}, please follow instructions provided at https://github.com/Minio-io/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi done + @for mcpath in $(echo ${GOPATH} | sed 's/:/\n/g' | grep -v Godeps); do if [ ! -d ${mcpath}/src/github.com/minio/minio ]; then echo "Project not found in ${mcpath}, please follow instructions provided at https://github.com/minio/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository" && exit 1; fi done getdeps: checkdeps checkgopath @go get github.com/minio/godep && echo "Installed godep:" diff --git a/README.md b/README.md index ba6eb3a5c..c6f6592ed 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,14 @@ Minio's design is inspired by Amazon's S3 for its API and Facebook's Haystack fo [![GoDoc](https://godoc.org/github.com/minio/minio?status.svg)](https://godoc.org/github.com/minio/minio) [![Build Status](https://travis-ci.org/minio/minio.svg)](https://travis-ci.org/minio/minio) ### Join Community -* Community hangout on Gitter [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Minio-io/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +* Community hangout on Gitter [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) * Ask questions on Quora [![Quora](http://upload.wikimedia.org/wikipedia/commons/thumb/5/57/Quora_logo.svg/55px-Quora_logo.svg.png)](http://www.quora.com/Minio) ### Developers * [Get Source](./CONTRIBUTING.md) * [Build Dependencies](./BUILDDEPS.md) * [Development Workflow](./CONTRIBUTING.md#developer-guidelines) -* [Developer discussions and bugs](https://github.com/Minio-io/minio/issues) +* [Developer discussions and bugs](https://github.com/minio/minio/issues) ### Download @@ -36,4 +36,4 @@ Minio's design is inspired by Amazon's S3 for its API and Facebook's Haystack fo | i386 | Never | [![Analytics](https://ga-beacon.appspot.com/UA-56860620-3/minio/readme)](https://github.com/igrigorik/ga-beacon) -[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/Minio-io/minio/trend.png)](https://bitdeli.com/free "Bitdeli Badge") +[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/minio/minio/trend.png)](https://bitdeli.com/free "Bitdeli Badge") diff --git a/buildscripts/checkdeps.sh b/buildscripts/checkdeps.sh index 46c5372a7..88772052e 100644 --- a/buildscripts/checkdeps.sh +++ b/buildscripts/checkdeps.sh @@ -81,7 +81,7 @@ check_golang_env() { if [ $? -eq 1 ]; then echo "ERROR" echo "GOROOT environment variable missing, please refer to Go installation document" - echo "https://github.com/Minio-io/minio/blob/master/BUILDDEPS.md#install-go-13" + echo "https://github.com/minio/minio/blob/master/BUILDDEPS.md#install-go-13" exit 1 fi @@ -89,7 +89,7 @@ check_golang_env() { if [ $? -eq 1 ]; then echo "ERROR" echo "GOPATH environment variable missing, please refer to Go installation document" - echo "https://github.com/Minio-io/minio/blob/master/BUILDDEPS.md#install-go-13" + echo "https://github.com/minio/minio/blob/master/BUILDDEPS.md#install-go-13" exit 1 fi } @@ -188,7 +188,7 @@ main() { echo "Please install them " echo "${MISSING}" echo - echo "Follow https://github.com/Minio-io/minio/blob/master/BUILDDEPS.md for further instructions" + echo "Follow https://github.com/minio/minio/blob/master/BUILDDEPS.md for further instructions" exit 1 fi echo "Done" diff --git a/pkg/erasure/README.md b/pkg/erasure/README.md index cafa80eb3..6a1fa2bee 100644 --- a/pkg/erasure/README.md +++ b/pkg/erasure/README.md @@ -6,7 +6,7 @@ Erasure is an open source Golang library written on top of ISAL (Intel Intellige * [Get Source](./CONTRIBUTING.md) * [Build Dependencies](./BUILDDEPS.md) * [Development Workflow](./CONTRIBUTING.md#developer-guidelines) -* [Developer discussions and bugs](https://github.com/Minio-io/erasure/issues) +* [Developer discussions and bugs](https://github.com/minio/erasure/issues) ### Supported platforms