mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add import for dotcloud/tar to replace std tar pkg
This commit is contained in:
parent
90cb66f08d
commit
ec61c46bf7
2 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ run cd /tmp && echo 'package main' > t.go && go test -a -i -v
|
|||
run PKG=github.com/kr/pty REV=27435c699; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
||||
run PKG=github.com/gorilla/context/ REV=708054d61e5; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
||||
run PKG=github.com/gorilla/mux/ REV=9b36453141c; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
||||
run PKG=github.com/dotcloud/tar/ REV=d06045a6d9; git clone http://$PKG /go/src/$PKG && cd /go/src/$PKG && git checkout -f $REV
|
||||
# Run dependencies
|
||||
run apt-get install -y iptables
|
||||
# lxc requires updating ubuntu sources
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
package utils
|
||||
|
||||
import (
|
||||
"archive/tar"
|
||||
"bytes"
|
||||
"compress/gzip"
|
||||
"crypto/sha256"
|
||||
"encoding/hex"
|
||||
"github.com/dotcloud/tar"
|
||||
"hash"
|
||||
"io"
|
||||
"sort"
|
||||
|
|
Loading…
Reference in a new issue