Skip to content

Commit 2cf79b8

Browse files
committed
party -c -t -d=vendor
1 parent a322548 commit 2cf79b8

270 files changed

Lines changed: 50858 additions & 11 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ssh2docker
33
import (
44
"fmt"
55

6-
"golang.org/x/crypto/ssh"
6+
"github.com/moul/ssh2docker/vendor/golang.org/x/crypto/ssh"
77
)
88

99
// ImageIsAllowed returns true if the target image is in the allowed list

auth_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package ssh2docker
33
import (
44
"testing"
55

6-
. "github.com/smartystreets/goconvey/convey"
6+
. "github.com/moul/ssh2docker/vendor/github.com/smartystreets/goconvey/convey"
77
)
88

99
func TestServer_ImageIsAllowed(t *testing.T) {

client.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"sync"
1010
"syscall"
1111

12-
"github.com/Sirupsen/logrus"
13-
"github.com/kr/pty"
14-
"golang.org/x/crypto/ssh"
12+
"github.com/moul/ssh2docker/vendor/github.com/Sirupsen/logrus"
13+
"github.com/moul/ssh2docker/vendor/github.com/kr/pty"
14+
"github.com/moul/ssh2docker/vendor/golang.org/x/crypto/ssh"
1515
)
1616

1717
var clientCounter = 0

cmd/ssh2docker/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"path"
77
"strings"
88

9-
"github.com/Sirupsen/logrus"
10-
"github.com/codegangsta/cli"
119
"github.com/moul/ssh2docker"
10+
"github.com/moul/ssh2docker/vendor/github.com/Sirupsen/logrus"
11+
"github.com/moul/ssh2docker/vendor/github.com/codegangsta/cli"
1212
)
1313

1414
var VERSION string

keys.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66
"strings"
77

8-
"golang.org/x/crypto/ssh"
8+
"github.com/moul/ssh2docker/vendor/golang.org/x/crypto/ssh"
99
)
1010

1111
// AddHostKey parses/loads an ssh key and registers it to the server

server.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package ssh2docker
33
import (
44
"net"
55

6-
"github.com/Sirupsen/logrus"
7-
"golang.org/x/crypto/ssh"
6+
"github.com/moul/ssh2docker/vendor/github.com/Sirupsen/logrus"
7+
"github.com/moul/ssh2docker/vendor/golang.org/x/crypto/ssh"
88
)
99

1010
// Server is the ssh2docker main structure

tty.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"syscall"
66
"unsafe"
77

8-
"github.com/Sirupsen/logrus"
8+
"github.com/moul/ssh2docker/vendor/github.com/Sirupsen/logrus"
99
)
1010

1111
func parseDims(b []byte) (uint32, uint32) {

vendor/github.com/Sirupsen/logrus/CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Sirupsen/logrus/LICENSE

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)