Change all minio-io path to minio

This commit is contained in:
Harshavardhana
2015-05-11 16:23:10 -07:00
parent e39de4f603
commit 8d06504068
68 changed files with 127 additions and 127 deletions

View File

@@ -1,10 +1,10 @@
### Setup your Erasure Github Repository
Fork [Erasure upstream](https://github.com/minio-io/erasure/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 [Erasure upstream](https://github.com/minio/erasure/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
$ git clone https://github.com/$USER_ID/erasure
$ cd erasure
$ mkdir -p ${GOPATH}/src/github.com/minio-io
$ ln -s ${PWD} $GOPATH/src/github.com/minio-io/
$ mkdir -p ${GOPATH}/src/github.com/minio
$ ln -s ${PWD} $GOPATH/src/github.com/minio/
```
### Compiling Erasure from source

View File

@@ -20,7 +20,7 @@ import (
"bytes"
"testing"
. "github.com/minio-io/check"
. "github.com/minio/check"
)
type MySuite struct{}

View File

@@ -19,7 +19,7 @@ package erasure
import (
"bytes"
. "github.com/minio-io/check"
. "github.com/minio/check"
)
func corruptChunks(chunks [][]byte, errorIndex []int) [][]byte {