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
|
package client
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"../future"
|
"github.com/dotcloud/docker/future"
|
||||||
"../rcli"
|
"github.com/dotcloud/docker/rcli"
|
||||||
"io"
|
"io"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"log"
|
"log"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"../client"
|
"github.com/dotcloud/docker/client"
|
||||||
"flag"
|
"flag"
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
".."
|
"github.com/dotcloud/docker"
|
||||||
"../server"
|
"github.com/dotcloud/docker/server"
|
||||||
"flag"
|
"flag"
|
||||||
"log"
|
"log"
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package fs
|
package fs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"../future"
|
"github.com/dotcloud/docker/future"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
package fs
|
package fs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"../fake"
|
"github.com/dotcloud/docker/fake"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
|
|
@ -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"
|
||||||
|
|
Loading…
Add table
Reference in a new issue