mirror of
https://github.com/pgsty/minio.git
synced 2026-07-15 16:30:29 +03:00
Change all minio-io path to minio
This commit is contained in:
Generated
+3
-3
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"ImportPath": "github.com/minio-io/minio",
|
||||
"ImportPath": "github.com/minio/minio",
|
||||
"GoVersion": "go1.4.2",
|
||||
"Packages": [
|
||||
"./..."
|
||||
@@ -18,11 +18,11 @@
|
||||
"Rev": "660d31f8602b95058fed6833debf113e85350868"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/minio-io/check",
|
||||
"ImportPath": "github.com/minio/check",
|
||||
"Rev": "bc4e66da8cd7ff58a4b9b84301f906352b8f2c94"
|
||||
},
|
||||
{
|
||||
"ImportPath": "github.com/minio-io/cli",
|
||||
"ImportPath": "github.com/minio/cli",
|
||||
"Comment": "1.2.0-110-g111d644",
|
||||
"Rev": "111d6445d384505978aaf5b218ce96d163b73c57"
|
||||
},
|
||||
|
||||
+2
-2
@@ -3,11 +3,11 @@ Instructions
|
||||
|
||||
Install the package with:
|
||||
|
||||
go get github.com/minio-io/check
|
||||
go get github.com/minio/check
|
||||
|
||||
Import it with:
|
||||
|
||||
import "github.com/minio-io/check"
|
||||
import "github.com/minio/check"
|
||||
|
||||
and use _check_ as the package name inside the code.
|
||||
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
package check_test
|
||||
|
||||
import (
|
||||
. "github.com/minio-io/check"
|
||||
. "github.com/minio/check"
|
||||
"time"
|
||||
)
|
||||
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@ package check_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
||||
+1
-1
@@ -12,7 +12,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
)
|
||||
|
||||
// We count the number of suites run at least to get a vague hint that the
|
||||
|
||||
+1
-1
@@ -2,7 +2,7 @@ package check_test
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
"reflect"
|
||||
"runtime"
|
||||
)
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
package check_test
|
||||
|
||||
import (
|
||||
. "github.com/minio-io/check"
|
||||
. "github.com/minio/check"
|
||||
)
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
|
||||
+1
-1
@@ -8,7 +8,7 @@ package check_test
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
"log"
|
||||
"os"
|
||||
"regexp"
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@
|
||||
package check_test
|
||||
|
||||
import (
|
||||
"github.com/minio-io/check"
|
||||
"github.com/minio/check"
|
||||
"os"
|
||||
"reflect"
|
||||
"runtime"
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
package check_test
|
||||
|
||||
import (
|
||||
. "github.com/minio-io/check"
|
||||
. "github.com/minio/check"
|
||||
)
|
||||
|
||||
var _ = Suite(&PrinterS{})
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ package check_test
|
||||
|
||||
import (
|
||||
"errors"
|
||||
. "github.com/minio-io/check"
|
||||
. "github.com/minio/check"
|
||||
"os"
|
||||
"sync"
|
||||
)
|
||||
|
||||
+5
-5
@@ -2,7 +2,7 @@
|
||||
cli.go is simple, fast, and fun package for building command line apps in Go. The goal is to enable developers to write fast and distributable command line applications in an expressive way. - This is a fork of ``github.com/codegangsta/cli`` until our patches get merge upstream
|
||||
|
||||
You can view the API docs here:
|
||||
http://godoc.org/github.com/minio-io/cli
|
||||
http://godoc.org/github.com/minio/cli
|
||||
|
||||
## Overview
|
||||
Command line apps are usually so tiny that there is absolutely no reason why your code should *not* be self-documenting. Things like generating help text and parsing command flags should not hinder productivity when writing a command line app.
|
||||
@@ -14,7 +14,7 @@ Make sure you have a working Go environment (go 1.1 is *required*). [See the ins
|
||||
|
||||
To install `cli.go`, simply run:
|
||||
```
|
||||
$ go get github.com/minio-io/cli
|
||||
$ go get github.com/minio/cli
|
||||
```
|
||||
|
||||
Make sure your `PATH` includes to the `$GOPATH/bin` directory so your commands can be easily used:
|
||||
@@ -30,7 +30,7 @@ package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func main() {
|
||||
@@ -45,7 +45,7 @@ package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func main() {
|
||||
@@ -73,7 +73,7 @@ package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
||||
+1
-1
@@ -6,7 +6,7 @@ import (
|
||||
"os"
|
||||
"testing"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func ExampleApp() {
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ package cli_test
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func Example() {
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ import (
|
||||
"flag"
|
||||
"testing"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func TestCommandDoNotIgnoreFlags(t *testing.T) {
|
||||
|
||||
+1
-1
@@ -5,7 +5,7 @@ import (
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
func TestNewContext(t *testing.T) {
|
||||
|
||||
+1
-1
@@ -7,7 +7,7 @@ import (
|
||||
"strings"
|
||||
"testing"
|
||||
|
||||
"github.com/minio-io/cli"
|
||||
"github.com/minio/cli"
|
||||
)
|
||||
|
||||
var boolFlagTests = []struct {
|
||||
|
||||
Reference in New Issue
Block a user