1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Change relative paths to absolute

This commit is contained in:
Guillaume J. Charmes 2013-03-11 02:59:52 -07:00
parent 5d6199b925
commit 687d6f25ee
8 changed files with 13 additions and 13 deletions

View file

@ -1,8 +1,8 @@
package client package client
import ( import (
"../future" "github.com/dotcloud/docker/future"
"../rcli" "github.com/dotcloud/docker/rcli"
"io" "io"
"io/ioutil" "io/ioutil"
"log" "log"

View file

@ -1,7 +1,7 @@
package docker package docker
import ( import (
"./fs" "github.com/dotcloud/docker/fs"
"encoding/json" "encoding/json"
"errors" "errors"
"github.com/kr/pty" "github.com/kr/pty"

View file

@ -1,7 +1,7 @@
package docker package docker
import ( import (
"./fs" "github.com/dotcloud/docker/fs"
"container/list" "container/list"
"fmt" "fmt"
"io/ioutil" "io/ioutil"

View file

@ -1,7 +1,7 @@
package main package main
import ( import (
"../client" "github.com/dotcloud/docker/client"
"flag" "flag"
"log" "log"
"os" "os"

View file

@ -1,8 +1,8 @@
package main package main
import ( import (
".." "github.com/dotcloud/docker"
"../server" "github.com/dotcloud/docker/server"
"flag" "flag"
"log" "log"
) )

View file

@ -1,7 +1,7 @@
package fs package fs
import ( import (
"../future" "github.com/dotcloud/docker/future"
"errors" "errors"
"fmt" "fmt"
"io" "io"

View file

@ -1,7 +1,7 @@
package fs package fs
import ( import (
"../fake" "github.com/dotcloud/docker/fake"
"errors" "errors"
"fmt" "fmt"
"io/ioutil" "io/ioutil"

View file

@ -1,10 +1,10 @@
package server package server
import ( import (
".." "github.com/dotcloud/docker"
"../fs" "github.com/dotcloud/docker/fs"
"../future" "github.com/dotcloud/docker/future"
"../rcli" "github.com/dotcloud/docker/rcli"
"bufio" "bufio"
"bytes" "bytes"
"encoding/json" "encoding/json"