mirror of
https://github.com/containers/skopeo.git
synced 2025-10-22 03:24:25 +00:00
24 lines
758 B
Bash
Executable File
24 lines
758 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
cd "$(dirname "$BASH_SOURCE")/.."
|
|
rm -rf vendor/
|
|
source 'hack/.vendor-helpers.sh'
|
|
|
|
clone git github.com/codegangsta/cli v1.2.0
|
|
clone git github.com/Sirupsen/logrus v0.8.7 # logrus is a common dependency among multiple deps
|
|
clone git github.com/docker/docker master
|
|
clone git golang.org/x/net master https://github.com/golang/net.git
|
|
clone git github.com/docker/engine-api master
|
|
clone git github.com/docker/distribution master
|
|
clone git github.com/docker/go-connections master
|
|
clone git github.com/docker/go-units master
|
|
clone git github.com/docker/libtrust master
|
|
clone git github.com/opencontainers/runc master
|
|
clone git github.com/vbatts/tar-split master
|
|
clone git github.com/gorilla/mux master
|
|
|
|
clean
|
|
|
|
mv vendor/src/* vendor/
|