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:
parent
5d6199b925
commit
687d6f25ee
8 changed files with 13 additions and 13 deletions
|
@ -1,8 +1,8 @@
|
|||
package client
|
||||
|
||||
import (
|
||||
"../future"
|
||||
"../rcli"
|
||||
"github.com/dotcloud/docker/future"
|
||||
"github.com/dotcloud/docker/rcli"
|
||||
"io"
|
||||
"io/ioutil"
|
||||
"log"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package docker
|
||||
|
||||
import (
|
||||
"./fs"
|
||||
"github.com/dotcloud/docker/fs"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"github.com/kr/pty"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package docker
|
||||
|
||||
import (
|
||||
"./fs"
|
||||
"github.com/dotcloud/docker/fs"
|
||||
"container/list"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"../client"
|
||||
"github.com/dotcloud/docker/client"
|
||||
"flag"
|
||||
"log"
|
||||
"os"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
".."
|
||||
"../server"
|
||||
"github.com/dotcloud/docker"
|
||||
"github.com/dotcloud/docker/server"
|
||||
"flag"
|
||||
"log"
|
||||
)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package fs
|
||||
|
||||
import (
|
||||
"../future"
|
||||
"github.com/dotcloud/docker/future"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
package fs
|
||||
|
||||
import (
|
||||
"../fake"
|
||||
"github.com/dotcloud/docker/fake"
|
||||
"errors"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
".."
|
||||
"../fs"
|
||||
"../future"
|
||||
"../rcli"
|
||||
"github.com/dotcloud/docker"
|
||||
"github.com/dotcloud/docker/fs"
|
||||
"github.com/dotcloud/docker/future"
|
||||
"github.com/dotcloud/docker/rcli"
|
||||
"bufio"
|
||||
"bytes"
|
||||
"encoding/json"
|
||||
|
|
Loading…
Reference in a new issue