changeset 527:4a637b333417

The CoreOS guys moved bbolt from github.com/coreos/ to github.com/etcd-io/.
author Sascha L. Teichmann <teichmann@intevation.de>
date Tue, 28 Aug 2018 08:07:08 +0200
parents 22cca659e40b
children 076996a41c31
files 3rdpartylibs.sh pkg/auth/store.go
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/3rdpartylibs.sh	Mon Aug 27 17:58:49 2018 +0200
+++ b/3rdpartylibs.sh	Tue Aug 28 08:07:08 2018 +0200
@@ -1,6 +1,6 @@
 #!/bin/sh
 go get -u -v github.com/jackc/pgx
-go get -u -v github.com/coreos/bbolt/...
+go get -u -v github.com/etcd-io/bbolt/...
 go get -u -v github.com/mitchellh/go-homedir
 go get -u -v github.com/spf13/cobra
 go get -u -v github.com/spf13/viper
--- a/pkg/auth/store.go	Mon Aug 27 17:58:49 2018 +0200
+++ b/pkg/auth/store.go	Tue Aug 28 08:07:08 2018 +0200
@@ -6,7 +6,7 @@
 	"log"
 	"time"
 
-	bolt "github.com/coreos/bbolt"
+	bolt "github.com/etcd-io/bbolt"
 )
 
 var ErrNoSuchToken = errors.New("No such token")