Skip to content
Snippets Groups Projects
Commit 0bc51f85 authored by Zach's avatar Zach Committed by GitHub
Browse files

Merge pull request #313 from silasdavis/bye-docker

Let's not depend on docker
parents f929555b 9244f795
No related branches found
No related tags found
No related merge requests found
......@@ -25,16 +25,6 @@ imports:
version: 5215b55f46b2b919f50a1df0eaa5886afe4e3b3d
subpackages:
- spew
- name: github.com/docker/docker
version: 097d1a2b6186dcf1df8ae6135470871aca309a31
subpackages:
- pkg/ioutils
- pkg/term
- pkg/longpath
- pkg/system
- pkg/term/windows
- name: github.com/docker/go-units
version: f2d77a61e3c169b43402a0a1e84f06daf29b8190
- name: github.com/eris-ltd/eris-keys
version: 114ebc77443db9a153692233294e48bc7e184215
- name: github.com/eris-ltd/eris-logger
......
......@@ -4,7 +4,7 @@ import (
"os"
"path"
"github.com/docker/docker/pkg/ioutils"
"io/ioutil"
)
// FileFixtures writes files to a temporary location for use in testing.
......@@ -19,7 +19,7 @@ type FileFixtures struct {
// temporary root directory that is fixed when allocate() is called on the
// FileFixtures struct.
func NewFileFixtures(identifyingPrefix string) *FileFixtures {
dir, err := ioutils.TempDir("", identifyingPrefix)
dir, err := ioutil.TempDir("", identifyingPrefix)
return &FileFixtures{
tempDir: dir,
Error: err,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment