Skip to content

Commit

Permalink
Switch to github.com/urfave/cli
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Jul 19, 2016
1 parent b01b4ed commit 1cb5f08
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cmd/assh/main.go
Expand Up @@ -6,7 +6,7 @@ import (
"path"

"github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
"github.com/urfave/cli"

"github.com/moul/advanced-ssh-config/pkg/commands"
. "github.com/moul/advanced-ssh-config/pkg/logger"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/build.go
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

"github.com/codegangsta/cli"
"github.com/urfave/cli"

"github.com/moul/advanced-ssh-config/pkg/config"
. "github.com/moul/advanced-ssh-config/pkg/logger"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/commands.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"os"

"github.com/codegangsta/cli"
"github.com/urfave/cli"
"github.com/moul/advanced-ssh-config/pkg/config"

// . "github.com/moul/advanced-ssh-config/pkg/logger"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/control-sockets.go
Expand Up @@ -6,7 +6,7 @@ import (
"os/exec"
"time"

"github.com/codegangsta/cli"
"github.com/urfave/cli"
"github.com/docker/go-units"

"github.com/moul/advanced-ssh-config/pkg/config"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/info.go
Expand Up @@ -7,7 +7,7 @@ import (
"strings"

"github.com/bugsnag/osext"
"github.com/codegangsta/cli"
"github.com/urfave/cli"

"github.com/moul/advanced-ssh-config/pkg/config"
"github.com/moul/advanced-ssh-config/pkg/utils"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/list.go
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"github.com/codegangsta/cli"
"github.com/urfave/cli"
"golang.org/x/crypto/ssh/terminal"

"github.com/mgutz/ansi"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/proxy.go
Expand Up @@ -17,7 +17,7 @@ import (

"golang.org/x/net/context"

"github.com/codegangsta/cli"
"github.com/urfave/cli"
shlex "github.com/flynn/go-shlex"

"github.com/moul/advanced-ssh-config/pkg/config"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/search.go
Expand Up @@ -3,7 +3,7 @@ package commands
import (
"fmt"

"github.com/codegangsta/cli"
"github.com/urfave/cli"

"github.com/moul/advanced-ssh-config/pkg/config"
// . "github.com/moul/advanced-ssh-config/pkg/logger"
Expand Down
2 changes: 1 addition & 1 deletion pkg/commands/wrapper.go
Expand Up @@ -6,7 +6,7 @@ import (
"os/exec"
"syscall"

"github.com/codegangsta/cli"
"github.com/urfave/cli"

"github.com/moul/advanced-ssh-config/pkg/config"
. "github.com/moul/advanced-ssh-config/pkg/logger"
Expand Down
4 changes: 2 additions & 2 deletions pkg/config/ssh_flags.go
@@ -1,8 +1,8 @@
package config

import "github.com/codegangsta/cli"
import "github.com/urfave/cli"

// SSHFlags is built at init(), it contains codegangsta/cli string & bool flags for SSH
// SSHFlags is built at init(), it contains urfave/cli string & bool flags for SSH
var SSHFlags = []cli.Flag{}

// SSHBoolFlags contains list of available SSH boolean options
Expand Down

0 comments on commit 1cb5f08

Please sign in to comment.