aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--glide.yaml2
-rw-r--r--lib/agent/agent.go2
-rw-r--r--lib/xdsconfig/config.go2
-rw-r--r--main.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/glide.yaml b/glide.yaml
index 5e24308..3370e2d 100644
--- a/glide.yaml
+++ b/glide.yaml
@@ -13,7 +13,7 @@ import:
- lib/sync
- lib/config
- lib/protocol
-- package: github.com/codegangsta/cli
+- package: github.com/urfave/cli
version: ^1.19.1
- package: github.com/Sirupsen/logrus
version: ^0.11.5
diff --git a/lib/agent/agent.go b/lib/agent/agent.go
index 3bdd89f..e34dd63 100644
--- a/lib/agent/agent.go
+++ b/lib/agent/agent.go
@@ -11,9 +11,9 @@ import (
"time"
"github.com/Sirupsen/logrus"
- "github.com/codegangsta/cli"
"github.com/iotbzh/xds-agent/lib/syncthing"
"github.com/iotbzh/xds-agent/lib/xdsconfig"
+ "github.com/urfave/cli"
)
const cookieMaxAge = "3600"
diff --git a/lib/xdsconfig/config.go b/lib/xdsconfig/config.go
index 9e44070..56a9cf9 100644
--- a/lib/xdsconfig/config.go
+++ b/lib/xdsconfig/config.go
@@ -8,7 +8,7 @@ import (
"os"
"github.com/Sirupsen/logrus"
- "github.com/codegangsta/cli"
+ "github.com/urfave/cli"
common "github.com/iotbzh/xds-common/golib"
uuid "github.com/satori/go.uuid"
)
diff --git a/main.go b/main.go
index b0ec7ca..36d9af4 100644
--- a/main.go
+++ b/main.go
@@ -6,7 +6,7 @@ import (
"os"
"github.com/Sirupsen/logrus"
- "github.com/codegangsta/cli"
+ "github.com/urfave/cli"
"github.com/iotbzh/xds-agent/lib/agent"
"github.com/iotbzh/xds-agent/lib/xdsconfig"
)