Skip to content
Closed
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
4 changes: 2 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
name = "golang.org/x/net"

[[constraint]]
branch = "v2"
name = "gopkg.in/urfave/cli.v2"
name = "github.com/urfave/cli/v2"
version = "2.0.0"

[[constraint]]
name = "gopkg.in/yaml.v2"
Expand Down
2 changes: 1 addition & 1 deletion realize.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/oxequa/interact"
"github.com/oxequa/realize/realize"
"gopkg.in/urfave/cli.v2"
"github.com/urfave/cli/v2"
)

var r realize.Realize
Expand Down
2 changes: 1 addition & 1 deletion realize/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"path/filepath"
"reflect"

"gopkg.in/urfave/cli.v2"
"github.com/urfave/cli/v2"
)

// Schema projects list
Expand Down
3 changes: 2 additions & 1 deletion realize/schema_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package realize

import (
"flag"
"gopkg.in/urfave/cli.v2"
"path/filepath"
"testing"

"github.com/urfave/cli/v2"
)

func TestSchema_Add(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion realize/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path"
"strings"

"gopkg.in/urfave/cli.v2"
"github.com/urfave/cli/v2"
)

// Params parse one by one the given argumentes
Expand Down
3 changes: 2 additions & 1 deletion realize/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package realize

import (
"flag"
"gopkg.in/urfave/cli.v2"
"os"
"path/filepath"
"testing"

"github.com/urfave/cli/v2"
)

func TestParams(t *testing.T) {
Expand Down
3 changes: 2 additions & 1 deletion realize_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package main
import (
"bytes"
"errors"
"github.com/oxequa/realize/realize"
"log"
"strings"
"testing"

"github.com/oxequa/realize/realize"
)

var mockResponse interface{}
Expand Down