From 322c4a92a307b3f9044d2af1e2284ebf58479da1 Mon Sep 17 00:00:00 2001 From: Jan Chaloupka Date: Wed, 27 Apr 2016 13:42:02 +0200 Subject: [PATCH] use system golang packages --- diff.go | 2 +- msg.go | 2 +- restore.go | 2 +- rewrite.go | 2 +- save.go | 2 +- vcs.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/diff.go b/diff.go index 6a5beff..c43faa4 100644 --- a/diff.go +++ b/diff.go @@ -5,7 +5,7 @@ import ( "fmt" "log" - "github.com/tools/godep/Godeps/_workspace/src/github.com/pmezard/go-difflib/difflib" + "github.com/pmezard/go-difflib/difflib" ) var cmdDiff = &Command{ diff --git a/msg.go b/msg.go index 1ddbd63..4a60378 100644 --- a/msg.go +++ b/msg.go @@ -4,7 +4,7 @@ import ( "fmt" "log" - "github.com/tools/godep/Godeps/_workspace/src/github.com/kr/pretty" + "github.com/kr/pretty" ) func debugln(a ...interface{}) (int, error) { diff --git a/restore.go b/restore.go index eb18331..7e800ed 100644 --- a/restore.go +++ b/restore.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - "github.com/tools/godep/Godeps/_workspace/src/golang.org/x/tools/go/vcs" + "golang.org/x/tools/go/vcs" ) var cmdRestore = &Command{ diff --git a/rewrite.go b/rewrite.go index fb70c15..c4c8594 100644 --- a/rewrite.go +++ b/rewrite.go @@ -13,7 +13,7 @@ import ( "go/printer" "go/token" - "github.com/tools/godep/Godeps/_workspace/src/github.com/kr/fs" + "github.com/kr/fs" ) // rewrite visits the go files in pkgs, plus all go files diff --git a/save.go b/save.go index 65446e1..55a2d6d 100644 --- a/save.go +++ b/save.go @@ -14,7 +14,7 @@ import ( "regexp" "strings" - "github.com/tools/godep/Godeps/_workspace/src/github.com/kr/fs" + "github.com/kr/fs" ) var cmdSave = &Command{ diff --git a/vcs.go b/vcs.go index 73e6dc0..a1e27b4 100644 --- a/vcs.go +++ b/vcs.go @@ -8,7 +8,7 @@ import ( "path/filepath" "strings" - "github.com/tools/godep/Godeps/_workspace/src/golang.org/x/tools/go/vcs" + "golang.org/x/tools/go/vcs" ) // VCS represents a version control system. -- 1.9.3