From e65286659e9dd7a62a0038197c90ead88ded7eb2 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 16 May 2018 11:42:07 -0400 Subject: [PATCH] Godeps: Try to appease CI by mimicking comment diff. Prior to this commit the builds of master are failing in Travis with an error during the `godep-restore` phase of our CI: ``` [ godep-restore] Starting godep restore rm -rf Godeps/ vendor/ godep save ./... diff /dev/fd/63 /dev/fd/62 254c254 < "Comment": "v1.3-28-g3955978", --- > "Comment": "v1.3.0-28-g3955978", > git diff --exit-code -- ./vendor/ > ``` This seems to be a mysterious difference in the "Comment" field of the `github.com/go-sql-driver/mysql` dependency. This dep hasn't changed versions so given the general level of frustration involved with debugging Godep it seems like the easiest path forward is to mimick the diff. This commit updates the "Comment" filed to match what CI expects. --- Godeps/Godeps.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index b910ceb50..44417fe7a 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -252,7 +252,7 @@ }, { "ImportPath": "github.com/go-sql-driver/mysql", - "Comment": "v1.3-28-g3955978", + "Comment": "v1.3.0-28-g3955978", "Rev": "3955978caca48c1658a4bb7a9c6a0f084e326af3" }, {