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
import (
"../future"
"../rcli"
"github.com/dotcloud/docker/future"
"github.com/dotcloud/docker/rcli"
"io"
"io/ioutil"
"log"

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -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"