diff --git a/src/github.com/stellar/gateway/bridge/app.go b/src/github.com/stellar/gateway/bridge/app.go index b1b051d..cd26609 100644 --- a/src/github.com/stellar/gateway/bridge/app.go +++ b/src/github.com/stellar/gateway/bridge/app.go @@ -4,7 +4,7 @@ import ( "errors" "flag" "fmt" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "net/http" "net/http/httputil" "net/url" diff --git a/src/github.com/stellar/gateway/bridge/gui/bindata.go b/src/github.com/stellar/gateway/bridge/gui/bindata.go index 75a3a52..87cfef4 100644 --- a/src/github.com/stellar/gateway/bridge/gui/bindata.go +++ b/src/github.com/stellar/gateway/bridge/gui/bindata.go @@ -224,10 +224,10 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "app.js": appJs, - "app.js.map": appJsMap, - "index.html": indexHtml, - "vendor.js": vendorJs, + "app.js": appJs, + "app.js.map": appJsMap, + "index.html": indexHtml, + "vendor.js": vendorJs, "vendor.js.map": vendorJsMap, } @@ -270,11 +270,12 @@ type bintree struct { Func func() (*asset, error) Children map[string]*bintree } + var _bintree = &bintree{nil, map[string]*bintree{ - "app.js": &bintree{appJs, map[string]*bintree{}}, - "app.js.map": &bintree{appJsMap, map[string]*bintree{}}, - "index.html": &bintree{indexHtml, map[string]*bintree{}}, - "vendor.js": &bintree{vendorJs, map[string]*bintree{}}, + "app.js": &bintree{appJs, map[string]*bintree{}}, + "app.js.map": &bintree{appJsMap, map[string]*bintree{}}, + "index.html": &bintree{indexHtml, map[string]*bintree{}}, + "vendor.js": &bintree{vendorJs, map[string]*bintree{}}, "vendor.js.map": &bintree{vendorJsMap, map[string]*bintree{}}, }} @@ -324,4 +325,3 @@ func _filePath(dir, name string) string { cannonicalName := strings.Replace(name, "\\", "/", -1) return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) } - diff --git a/src/github.com/stellar/gateway/bridge/handlers/request_handler_admin.go b/src/github.com/stellar/gateway/bridge/handlers/request_handler_admin.go index ebd2358..6ac678e 100644 --- a/src/github.com/stellar/gateway/bridge/handlers/request_handler_admin.go +++ b/src/github.com/stellar/gateway/bridge/handlers/request_handler_admin.go @@ -7,7 +7,7 @@ import ( "net/url" "strconv" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/stellar/gateway/db/entities" "github.com/stellar/gateway/horizon" "github.com/stellar/gateway/protocols" diff --git a/src/github.com/stellar/gateway/bridge/handlers/request_handler_authorize.go b/src/github.com/stellar/gateway/bridge/handlers/request_handler_authorize.go index 4068300..a2bff95 100644 --- a/src/github.com/stellar/gateway/bridge/handlers/request_handler_authorize.go +++ b/src/github.com/stellar/gateway/bridge/handlers/request_handler_authorize.go @@ -1,7 +1,7 @@ package handlers import ( - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "net/http" "github.com/stellar/gateway/protocols" diff --git a/src/github.com/stellar/gateway/bridge/handlers/request_handler_builder.go b/src/github.com/stellar/gateway/bridge/handlers/request_handler_builder.go index bc5a20a..f563e91 100644 --- a/src/github.com/stellar/gateway/bridge/handlers/request_handler_builder.go +++ b/src/github.com/stellar/gateway/bridge/handlers/request_handler_builder.go @@ -2,7 +2,7 @@ package handlers import ( "encoding/json" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "net/http" "strconv" @@ -49,7 +49,7 @@ func (rh *RequestHandler) Builder(w http.ResponseWriter, r *http.Request) { return } sequenceNumber, err = strconv.ParseUint(accountResponse.SequenceNumber, 10, 64) - }else{ + } else { sequenceNumber, err = strconv.ParseUint(request.SequenceNumber, 10, 64) } diff --git a/src/github.com/stellar/gateway/bridge/handlers/request_handler_create_keypair.go b/src/github.com/stellar/gateway/bridge/handlers/request_handler_create_keypair.go index faf7c7a..e70dfca 100644 --- a/src/github.com/stellar/gateway/bridge/handlers/request_handler_create_keypair.go +++ b/src/github.com/stellar/gateway/bridge/handlers/request_handler_create_keypair.go @@ -2,7 +2,7 @@ package handlers import ( "encoding/json" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "net/http" "github.com/stellar/gateway/protocols" diff --git a/src/github.com/stellar/gateway/bridge/handlers/request_handler_payment.go b/src/github.com/stellar/gateway/bridge/handlers/request_handler_payment.go index 447962f..ee58a69 100644 --- a/src/github.com/stellar/gateway/bridge/handlers/request_handler_payment.go +++ b/src/github.com/stellar/gateway/bridge/handlers/request_handler_payment.go @@ -5,7 +5,7 @@ import ( "encoding/hex" "encoding/json" "fmt" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "io/ioutil" "net/http" "strconv" diff --git a/src/github.com/stellar/gateway/bridge/handlers/request_handler_reprocess.go b/src/github.com/stellar/gateway/bridge/handlers/request_handler_reprocess.go index abe7910..11b1779 100644 --- a/src/github.com/stellar/gateway/bridge/handlers/request_handler_reprocess.go +++ b/src/github.com/stellar/gateway/bridge/handlers/request_handler_reprocess.go @@ -3,7 +3,7 @@ package handlers import ( "net/http" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/stellar/gateway/protocols" "github.com/stellar/gateway/protocols/bridge" "github.com/stellar/gateway/server" diff --git a/src/github.com/stellar/gateway/cmd/bridge/main.go b/src/github.com/stellar/gateway/cmd/bridge/main.go index 0d08616..3eb7e79 100644 --- a/src/github.com/stellar/gateway/cmd/bridge/main.go +++ b/src/github.com/stellar/gateway/cmd/bridge/main.go @@ -1,7 +1,7 @@ package main import ( - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "runtime" "github.com/spf13/cobra" diff --git a/src/github.com/stellar/gateway/cmd/compliance/main.go b/src/github.com/stellar/gateway/cmd/compliance/main.go index fbca873..8e5294b 100644 --- a/src/github.com/stellar/gateway/cmd/compliance/main.go +++ b/src/github.com/stellar/gateway/cmd/compliance/main.go @@ -3,7 +3,7 @@ package main import ( "runtime" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/spf13/cobra" "github.com/spf13/viper" diff --git a/src/github.com/stellar/gateway/compliance/app.go b/src/github.com/stellar/gateway/compliance/app.go index 7fc1302..bdb8296 100644 --- a/src/github.com/stellar/gateway/compliance/app.go +++ b/src/github.com/stellar/gateway/compliance/app.go @@ -6,8 +6,8 @@ import ( "os" "time" - log "github.com/Sirupsen/logrus" "github.com/goji/httpauth" + log "github.com/sirupsen/logrus" "github.com/facebookgo/inject" "github.com/stellar/gateway/compliance/config" diff --git a/src/github.com/stellar/gateway/compliance/handlers/request_handler_allow_access.go b/src/github.com/stellar/gateway/compliance/handlers/request_handler_allow_access.go index 95f7db2..2b8b97b 100644 --- a/src/github.com/stellar/gateway/compliance/handlers/request_handler_allow_access.go +++ b/src/github.com/stellar/gateway/compliance/handlers/request_handler_allow_access.go @@ -1,7 +1,7 @@ package handlers import ( - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "net/http" "time" diff --git a/src/github.com/stellar/gateway/compliance/handlers/request_handler_auth.go b/src/github.com/stellar/gateway/compliance/handlers/request_handler_auth.go index 645beb9..ee19069 100644 --- a/src/github.com/stellar/gateway/compliance/handlers/request_handler_auth.go +++ b/src/github.com/stellar/gateway/compliance/handlers/request_handler_auth.go @@ -12,7 +12,7 @@ import ( "strings" "time" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/stellar/gateway/db/entities" "github.com/stellar/gateway/protocols" diff --git a/src/github.com/stellar/gateway/compliance/handlers/request_handler_receive.go b/src/github.com/stellar/gateway/compliance/handlers/request_handler_receive.go index c2fcc6b..ae29477 100644 --- a/src/github.com/stellar/gateway/compliance/handlers/request_handler_receive.go +++ b/src/github.com/stellar/gateway/compliance/handlers/request_handler_receive.go @@ -1,7 +1,7 @@ package handlers import ( - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "net/http" "github.com/stellar/gateway/protocols" diff --git a/src/github.com/stellar/gateway/compliance/handlers/request_handler_remove_access.go b/src/github.com/stellar/gateway/compliance/handlers/request_handler_remove_access.go index 4e4014c..1756648 100644 --- a/src/github.com/stellar/gateway/compliance/handlers/request_handler_remove_access.go +++ b/src/github.com/stellar/gateway/compliance/handlers/request_handler_remove_access.go @@ -1,7 +1,7 @@ package handlers import ( - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "net/http" "github.com/stellar/gateway/protocols" diff --git a/src/github.com/stellar/gateway/compliance/handlers/request_handler_send.go b/src/github.com/stellar/gateway/compliance/handlers/request_handler_send.go index 81f6eb3..aaccb11 100644 --- a/src/github.com/stellar/gateway/compliance/handlers/request_handler_send.go +++ b/src/github.com/stellar/gateway/compliance/handlers/request_handler_send.go @@ -5,7 +5,7 @@ import ( "io/ioutil" "net/http" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/stellar/gateway/protocols" callback "github.com/stellar/gateway/protocols/compliance" "github.com/stellar/gateway/server" diff --git a/src/github.com/stellar/gateway/compliance/handlers/request_handler_tx_status.go b/src/github.com/stellar/gateway/compliance/handlers/request_handler_tx_status.go index fe48958..54ea162 100644 --- a/src/github.com/stellar/gateway/compliance/handlers/request_handler_tx_status.go +++ b/src/github.com/stellar/gateway/compliance/handlers/request_handler_tx_status.go @@ -6,7 +6,7 @@ import ( "net/http" "net/url" - log "github.com/Sirupsen/logrus" + log "github.com/sirupsen/logrus" "github.com/stellar/gateway/protocols" "github.com/stellar/gateway/server" "github.com/stellar/go/protocols/compliance" diff --git a/src/github.com/stellar/gateway/db/drivers/mysql/bindata.go b/src/github.com/stellar/gateway/db/drivers/mysql/bindata.go index 2b6981c..cf9c401 100644 --- a/src/github.com/stellar/gateway/db/drivers/mysql/bindata.go +++ b/src/github.com/stellar/gateway/db/drivers/mysql/bindata.go @@ -161,7 +161,7 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "migrations_gateway/01_init.sql": migrations_gateway01_initSql, + "migrations_gateway/01_init.sql": migrations_gateway01_initSql, "migrations_compliance/01_init.sql": migrations_compliance01_initSql, } @@ -204,6 +204,7 @@ type bintree struct { Func func() (*asset, error) Children map[string]*bintree } + var _bintree = &bintree{nil, map[string]*bintree{ "migrations_compliance": &bintree{nil, map[string]*bintree{ "01_init.sql": &bintree{migrations_compliance01_initSql, map[string]*bintree{}}, @@ -259,4 +260,3 @@ func _filePath(dir, name string) string { cannonicalName := strings.Replace(name, "\\", "/", -1) return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) } - diff --git a/src/github.com/stellar/gateway/db/drivers/postgres/bindata.go b/src/github.com/stellar/gateway/db/drivers/postgres/bindata.go index 42aa7d0..b6a8967 100644 --- a/src/github.com/stellar/gateway/db/drivers/postgres/bindata.go +++ b/src/github.com/stellar/gateway/db/drivers/postgres/bindata.go @@ -161,7 +161,7 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ - "migrations_gateway/01_init.sql": migrations_gateway01_initSql, + "migrations_gateway/01_init.sql": migrations_gateway01_initSql, "migrations_compliance/01_init.sql": migrations_compliance01_initSql, } @@ -204,6 +204,7 @@ type bintree struct { Func func() (*asset, error) Children map[string]*bintree } + var _bintree = &bintree{nil, map[string]*bintree{ "migrations_compliance": &bintree{nil, map[string]*bintree{ "01_init.sql": &bintree{migrations_compliance01_initSql, map[string]*bintree{}}, @@ -259,4 +260,3 @@ func _filePath(dir, name string) string { cannonicalName := strings.Replace(name, "\\", "/", -1) return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) } - diff --git a/src/github.com/stellar/gateway/db/entity_manager.go b/src/github.com/stellar/gateway/db/entity_manager.go index fba9d00..1610bb0 100644 --- a/src/github.com/stellar/gateway/db/entity_manager.go +++ b/src/github.com/stellar/gateway/db/entity_manager.go @@ -1,7 +1,7 @@ package db import ( - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" "github.com/stellar/gateway/db/entities" ) diff --git a/src/github.com/stellar/gateway/db/repository.go b/src/github.com/stellar/gateway/db/repository.go index 87b7184..13a1667 100644 --- a/src/github.com/stellar/gateway/db/repository.go +++ b/src/github.com/stellar/gateway/db/repository.go @@ -3,7 +3,7 @@ package db import ( "fmt" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" "github.com/stellar/gateway/db/entities" "github.com/stellar/go/support/db" ) diff --git a/src/github.com/stellar/gateway/horizon/main.go b/src/github.com/stellar/gateway/horizon/main.go index a121694..d159eee 100644 --- a/src/github.com/stellar/gateway/horizon/main.go +++ b/src/github.com/stellar/gateway/horizon/main.go @@ -5,7 +5,7 @@ import ( "encoding/base64" "encoding/json" "fmt" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" "io" "io/ioutil" "net/http" diff --git a/src/github.com/stellar/gateway/listener/payment_listener.go b/src/github.com/stellar/gateway/listener/payment_listener.go index 761c075..e26d129 100644 --- a/src/github.com/stellar/gateway/listener/payment_listener.go +++ b/src/github.com/stellar/gateway/listener/payment_listener.go @@ -13,7 +13,7 @@ import ( "encoding/base64" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" "github.com/stellar/gateway/bridge/config" "github.com/stellar/gateway/db" "github.com/stellar/gateway/db/entities" diff --git a/src/github.com/stellar/gateway/submitter/transaction_submitter.go b/src/github.com/stellar/gateway/submitter/transaction_submitter.go index 746659b..59ca48a 100644 --- a/src/github.com/stellar/gateway/submitter/transaction_submitter.go +++ b/src/github.com/stellar/gateway/submitter/transaction_submitter.go @@ -9,7 +9,7 @@ import ( "sync" "time" - "github.com/Sirupsen/logrus" + "github.com/sirupsen/logrus" "github.com/stellar/gateway/db" "github.com/stellar/gateway/db/entities" "github.com/stellar/gateway/horizon" diff --git a/vendor/manifest b/vendor/manifest index d968fc2..a2d5c01 100644 --- a/vendor/manifest +++ b/vendor/manifest @@ -14,14 +14,14 @@ "branch": "v1" }, { - "importpath": "github.com/Sirupsen/logrus", - "repository": "https://github.com/Sirupsen/logrus", + "importpath": "github.com/sirupsen/logrus", + "repository": "https://github.com/sirupsen/logrus", "revision": "68cec9f21fbf3ea8d8f98c044bc6ce05f17b267a", "branch": "master" }, { - "importpath": "github.com/Sirupsen/logrus/hooks/test", - "repository": "https://github.com/Sirupsen/logrus", + "importpath": "github.com/sirupsen/logrus/hooks/test", + "repository": "https://github.com/sirupsen/logrus", "revision": "68cec9f21fbf3ea8d8f98c044bc6ce05f17b267a", "branch": "master", "path": "/hooks/test" diff --git a/vendor/src/github.com/Sirupsen/logrus/CHANGELOG.md b/vendor/src/github.com/sirupsen/logrus/CHANGELOG.md similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/CHANGELOG.md rename to vendor/src/github.com/sirupsen/logrus/CHANGELOG.md diff --git a/vendor/src/github.com/Sirupsen/logrus/LICENSE b/vendor/src/github.com/sirupsen/logrus/LICENSE similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/LICENSE rename to vendor/src/github.com/sirupsen/logrus/LICENSE diff --git a/vendor/src/github.com/Sirupsen/logrus/README.md b/vendor/src/github.com/sirupsen/logrus/README.md similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/README.md rename to vendor/src/github.com/sirupsen/logrus/README.md diff --git a/vendor/src/github.com/Sirupsen/logrus/alt_exit.go b/vendor/src/github.com/sirupsen/logrus/alt_exit.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/alt_exit.go rename to vendor/src/github.com/sirupsen/logrus/alt_exit.go diff --git a/vendor/src/github.com/Sirupsen/logrus/alt_exit_test.go b/vendor/src/github.com/sirupsen/logrus/alt_exit_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/alt_exit_test.go rename to vendor/src/github.com/sirupsen/logrus/alt_exit_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/doc.go b/vendor/src/github.com/sirupsen/logrus/doc.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/doc.go rename to vendor/src/github.com/sirupsen/logrus/doc.go diff --git a/vendor/src/github.com/Sirupsen/logrus/entry.go b/vendor/src/github.com/sirupsen/logrus/entry.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/entry.go rename to vendor/src/github.com/sirupsen/logrus/entry.go diff --git a/vendor/src/github.com/Sirupsen/logrus/entry_test.go b/vendor/src/github.com/sirupsen/logrus/entry_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/entry_test.go rename to vendor/src/github.com/sirupsen/logrus/entry_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/examples/basic/basic.go b/vendor/src/github.com/sirupsen/logrus/examples/basic/basic.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/examples/basic/basic.go rename to vendor/src/github.com/sirupsen/logrus/examples/basic/basic.go diff --git a/vendor/src/github.com/Sirupsen/logrus/examples/hook/hook.go b/vendor/src/github.com/sirupsen/logrus/examples/hook/hook.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/examples/hook/hook.go rename to vendor/src/github.com/sirupsen/logrus/examples/hook/hook.go diff --git a/vendor/src/github.com/Sirupsen/logrus/exported.go b/vendor/src/github.com/sirupsen/logrus/exported.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/exported.go rename to vendor/src/github.com/sirupsen/logrus/exported.go diff --git a/vendor/src/github.com/Sirupsen/logrus/formatter.go b/vendor/src/github.com/sirupsen/logrus/formatter.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/formatter.go rename to vendor/src/github.com/sirupsen/logrus/formatter.go diff --git a/vendor/src/github.com/Sirupsen/logrus/formatter_bench_test.go b/vendor/src/github.com/sirupsen/logrus/formatter_bench_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/formatter_bench_test.go rename to vendor/src/github.com/sirupsen/logrus/formatter_bench_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/hook_test.go b/vendor/src/github.com/sirupsen/logrus/hook_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/hook_test.go rename to vendor/src/github.com/sirupsen/logrus/hook_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/hooks.go b/vendor/src/github.com/sirupsen/logrus/hooks.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/hooks.go rename to vendor/src/github.com/sirupsen/logrus/hooks.go diff --git a/vendor/src/github.com/Sirupsen/logrus/hooks/syslog/README.md b/vendor/src/github.com/sirupsen/logrus/hooks/syslog/README.md similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/hooks/syslog/README.md rename to vendor/src/github.com/sirupsen/logrus/hooks/syslog/README.md diff --git a/vendor/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go b/vendor/src/github.com/sirupsen/logrus/hooks/syslog/syslog.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/hooks/syslog/syslog.go rename to vendor/src/github.com/sirupsen/logrus/hooks/syslog/syslog.go diff --git a/vendor/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go b/vendor/src/github.com/sirupsen/logrus/hooks/syslog/syslog_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/hooks/syslog/syslog_test.go rename to vendor/src/github.com/sirupsen/logrus/hooks/syslog/syslog_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/hooks/test/test.go b/vendor/src/github.com/sirupsen/logrus/hooks/test/test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/hooks/test/test.go rename to vendor/src/github.com/sirupsen/logrus/hooks/test/test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/hooks/test/test_test.go b/vendor/src/github.com/sirupsen/logrus/hooks/test/test_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/hooks/test/test_test.go rename to vendor/src/github.com/sirupsen/logrus/hooks/test/test_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/json_formatter.go b/vendor/src/github.com/sirupsen/logrus/json_formatter.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/json_formatter.go rename to vendor/src/github.com/sirupsen/logrus/json_formatter.go diff --git a/vendor/src/github.com/Sirupsen/logrus/json_formatter_test.go b/vendor/src/github.com/sirupsen/logrus/json_formatter_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/json_formatter_test.go rename to vendor/src/github.com/sirupsen/logrus/json_formatter_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/logger.go b/vendor/src/github.com/sirupsen/logrus/logger.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/logger.go rename to vendor/src/github.com/sirupsen/logrus/logger.go diff --git a/vendor/src/github.com/Sirupsen/logrus/logger_bench_test.go b/vendor/src/github.com/sirupsen/logrus/logger_bench_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/logger_bench_test.go rename to vendor/src/github.com/sirupsen/logrus/logger_bench_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/logrus.go b/vendor/src/github.com/sirupsen/logrus/logrus.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/logrus.go rename to vendor/src/github.com/sirupsen/logrus/logrus.go diff --git a/vendor/src/github.com/Sirupsen/logrus/logrus_test.go b/vendor/src/github.com/sirupsen/logrus/logrus_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/logrus_test.go rename to vendor/src/github.com/sirupsen/logrus/logrus_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/terminal_appengine.go b/vendor/src/github.com/sirupsen/logrus/terminal_appengine.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/terminal_appengine.go rename to vendor/src/github.com/sirupsen/logrus/terminal_appengine.go diff --git a/vendor/src/github.com/Sirupsen/logrus/terminal_bsd.go b/vendor/src/github.com/sirupsen/logrus/terminal_bsd.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/terminal_bsd.go rename to vendor/src/github.com/sirupsen/logrus/terminal_bsd.go diff --git a/vendor/src/github.com/Sirupsen/logrus/terminal_linux.go b/vendor/src/github.com/sirupsen/logrus/terminal_linux.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/terminal_linux.go rename to vendor/src/github.com/sirupsen/logrus/terminal_linux.go diff --git a/vendor/src/github.com/Sirupsen/logrus/terminal_notwindows.go b/vendor/src/github.com/sirupsen/logrus/terminal_notwindows.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/terminal_notwindows.go rename to vendor/src/github.com/sirupsen/logrus/terminal_notwindows.go diff --git a/vendor/src/github.com/Sirupsen/logrus/terminal_solaris.go b/vendor/src/github.com/sirupsen/logrus/terminal_solaris.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/terminal_solaris.go rename to vendor/src/github.com/sirupsen/logrus/terminal_solaris.go diff --git a/vendor/src/github.com/Sirupsen/logrus/terminal_windows.go b/vendor/src/github.com/sirupsen/logrus/terminal_windows.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/terminal_windows.go rename to vendor/src/github.com/sirupsen/logrus/terminal_windows.go diff --git a/vendor/src/github.com/Sirupsen/logrus/text_formatter.go b/vendor/src/github.com/sirupsen/logrus/text_formatter.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/text_formatter.go rename to vendor/src/github.com/sirupsen/logrus/text_formatter.go diff --git a/vendor/src/github.com/Sirupsen/logrus/text_formatter_test.go b/vendor/src/github.com/sirupsen/logrus/text_formatter_test.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/text_formatter_test.go rename to vendor/src/github.com/sirupsen/logrus/text_formatter_test.go diff --git a/vendor/src/github.com/Sirupsen/logrus/writer.go b/vendor/src/github.com/sirupsen/logrus/writer.go similarity index 100% rename from vendor/src/github.com/Sirupsen/logrus/writer.go rename to vendor/src/github.com/sirupsen/logrus/writer.go