From 1d5f68cdc6b67cbf1e83378e47f19e8a34e97dd0 Mon Sep 17 00:00:00 2001 From: Juan Batiz-Benet Date: Thu, 23 Apr 2015 13:30:42 -0700 Subject: [PATCH] godep: vendor correctly. I'm so sick of this absolute crap. It goes wrong all the time. I want to get off godeps soon. But for now, let's **please** setup a test on travis that exercises all sorts of godep things to avoid merging anything that will break. Maybe we can fail the build if any library is NOT vendored. --- Godeps/Godeps.json | 8 ++++---- .../whyrusleeping/go-logging/examples/example.go | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index 54cb4a063..8b665ed70 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -176,10 +176,6 @@ "ImportPath": "github.com/jbenet/go-is-domain", "Rev": "93b717f2ae17838a265e30277275ee99ee7198d6" }, - { - "ImportPath": "github.com/jbenet/go-logging", - "Rev": "128b9855511a4ea3ccbcf712695baf2bab72e134" - }, { "ImportPath": "github.com/jbenet/go-msgio", "Rev": "dbae89193876910c736b2ce1291fa8bbcf299d77" @@ -255,6 +251,10 @@ "ImportPath": "github.com/syndtr/gosnappy/snappy", "Rev": "156a073208e131d7d2e212cb749feae7c339e846" }, + { + "ImportPath": "github.com/whyrusleeping/go-logging", + "Rev": "128b9855511a4ea3ccbcf712695baf2bab72e134" + }, { "ImportPath": "github.com/whyrusleeping/go-metrics", "Rev": "1cd8009604ec2238b5a71305a0ecd974066e0e16" diff --git a/Godeps/_workspace/src/github.com/whyrusleeping/go-logging/examples/example.go b/Godeps/_workspace/src/github.com/whyrusleeping/go-logging/examples/example.go index f9664dcf8..163f6475b 100644 --- a/Godeps/_workspace/src/github.com/whyrusleeping/go-logging/examples/example.go +++ b/Godeps/_workspace/src/github.com/whyrusleeping/go-logging/examples/example.go @@ -3,7 +3,7 @@ package main import ( "os" - "github.com/whyrusleeping/go-logging" + "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/whyrusleeping/go-logging" ) var log = logging.MustGetLogger("example")