mirror of
https://github.com/containers/skopeo.git
synced 2025-10-21 19:03:44 +00:00
18 lines
409 B
Bash
Executable File
18 lines
409 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.10.0
|
|
clone git github.com/go-check/check v1
|
|
clone git github.com/docker/docker master
|
|
clone git github.com/docker/distribution master
|
|
clone git github.com/opencontainers/runc master
|
|
|
|
clean
|
|
|
|
mv vendor/src/* vendor/
|