Skip to content

Commit

Permalink
party -c -t -d=vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Sep 27, 2015
1 parent a322548 commit 2cf79b8
Show file tree
Hide file tree
Showing 270 changed files with 50,858 additions and 11 deletions.
2 changes: 1 addition & 1 deletion auth.go
Expand Up @@ -3,7 +3,7 @@ package ssh2docker
import (
"fmt"

"golang.org/x/crypto/ssh"
"github.com/moul/ssh2docker/vendor/golang.org/x/crypto/ssh"
)

// ImageIsAllowed returns true if the target image is in the allowed list
Expand Down
2 changes: 1 addition & 1 deletion auth_test.go
Expand Up @@ -3,7 +3,7 @@ package ssh2docker
import (
"testing"

. "github.com/smartystreets/goconvey/convey"
. "github.com/moul/ssh2docker/vendor/github.com/smartystreets/goconvey/convey"
)

func TestServer_ImageIsAllowed(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions client.go
Expand Up @@ -9,9 +9,9 @@ import (
"sync"
"syscall"

"github.com/Sirupsen/logrus"
"github.com/kr/pty"
"golang.org/x/crypto/ssh"
"github.com/moul/ssh2docker/vendor/github.com/Sirupsen/logrus"
"github.com/moul/ssh2docker/vendor/github.com/kr/pty"
"github.com/moul/ssh2docker/vendor/golang.org/x/crypto/ssh"
)

var clientCounter = 0
Expand Down
4 changes: 2 additions & 2 deletions cmd/ssh2docker/main.go
Expand Up @@ -6,9 +6,9 @@ import (
"path"
"strings"

"github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
"github.com/moul/ssh2docker"
"github.com/moul/ssh2docker/vendor/github.com/Sirupsen/logrus"
"github.com/moul/ssh2docker/vendor/github.com/codegangsta/cli"
)

var VERSION string
Expand Down
2 changes: 1 addition & 1 deletion keys.go
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"strings"

"golang.org/x/crypto/ssh"
"github.com/moul/ssh2docker/vendor/golang.org/x/crypto/ssh"
)

// AddHostKey parses/loads an ssh key and registers it to the server
Expand Down
4 changes: 2 additions & 2 deletions server.go
Expand Up @@ -3,8 +3,8 @@ package ssh2docker
import (
"net"

"github.com/Sirupsen/logrus"
"golang.org/x/crypto/ssh"
"github.com/moul/ssh2docker/vendor/github.com/Sirupsen/logrus"
"github.com/moul/ssh2docker/vendor/golang.org/x/crypto/ssh"
)

// Server is the ssh2docker main structure
Expand Down
2 changes: 1 addition & 1 deletion tty.go
Expand Up @@ -5,7 +5,7 @@ import (
"syscall"
"unsafe"

"github.com/Sirupsen/logrus"
"github.com/moul/ssh2docker/vendor/github.com/Sirupsen/logrus"
)

func parseDims(b []byte) (uint32, uint32) {
Expand Down
41 changes: 41 additions & 0 deletions vendor/github.com/Sirupsen/logrus/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions vendor/github.com/Sirupsen/logrus/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2cf79b8

Please sign in to comment.