From bb2a94eeef2fed5efc8468eb641f754af39f57b1 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Thu, 24 Jul 2014 22:19:50 +0000 Subject: [PATCH] update go import path and libcontainer Docker-DCO-1.1-Signed-off-by: Victor Vieux (github: vieux) --- mflag/example/example.go | 2 +- mflag/flag.go | 2 +- mflag/flag_test.go | 2 +- term/MAINTAINERS | 2 +- truncindex/truncindex_test.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/mflag/example/example.go b/mflag/example/example.go index 8af8ff9..2e766dd 100644 --- a/mflag/example/example.go +++ b/mflag/example/example.go @@ -3,7 +3,7 @@ package main import ( "fmt" - flag "github.com/dotcloud/docker/pkg/mflag" + flag "github.com/docker/docker/pkg/mflag" ) var ( diff --git a/mflag/flag.go b/mflag/flag.go index 52f786e..6e3f039 100644 --- a/mflag/flag.go +++ b/mflag/flag.go @@ -10,7 +10,7 @@ Define flags using flag.String(), Bool(), Int(), etc. This declares an integer flag, -f or --flagname, stored in the pointer ip, with type *int. - import "flag /github.com/dotcloud/docker/pkg/mflag" + import "flag /github.com/docker/docker/pkg/mflag" var ip = flag.Int([]string{"f", "-flagname"}, 1234, "help message for flagname") If you like, you can bind the flag to a variable using the Var() functions. var flagvar int diff --git a/mflag/flag_test.go b/mflag/flag_test.go index 4c2222e..2aa6fda 100644 --- a/mflag/flag_test.go +++ b/mflag/flag_test.go @@ -7,7 +7,7 @@ package mflag_test import ( "bytes" "fmt" - . "github.com/dotcloud/docker/pkg/mflag" + . "github.com/docker/docker/pkg/mflag" "os" "sort" "strings" diff --git a/term/MAINTAINERS b/term/MAINTAINERS index 1887dfc..aee10c8 100644 --- a/term/MAINTAINERS +++ b/term/MAINTAINERS @@ -1 +1 @@ -Solomon Hykes (@shykes) +Solomon Hykes (@shykes) diff --git a/truncindex/truncindex_test.go b/truncindex/truncindex_test.go index f88d667..32c41c7 100644 --- a/truncindex/truncindex_test.go +++ b/truncindex/truncindex_test.go @@ -4,7 +4,7 @@ import ( "math/rand" "testing" - "github.com/dotcloud/docker/utils" + "github.com/docker/docker/utils" ) // Test the behavior of TruncIndex, an index for querying IDs from a non-conflicting prefix.