Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit e28dbf4

Browse files
author
Dongsu Park
authored
Merge pull request #1615 from endocode/dongsu/glide-vendor
glide: use glide instead of govendor
2 parents 72ec700 + 0ba24be commit e28dbf4

File tree

257 files changed

+59812
-22725
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

257 files changed

+59812
-22725
lines changed

glide.lock

+92
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

glide.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package: github.com/coreos/fleet
2+
import:
3+
- package: github.com/coreos/etcd
4+
subpackages:
5+
- client
6+
- package: github.com/coreos/go-semver
7+
subpackages:
8+
- semver
9+
- package: github.com/coreos/go-systemd
10+
subpackages:
11+
- activation
12+
- dbus
13+
- unit
14+
- package: github.com/jonboulle/clockwork
15+
- package: github.com/pborman/uuid
16+
- package: github.com/prometheus/client_golang
17+
subpackages:
18+
- prometheus
19+
- package: github.com/rakyll/globalconf
20+
- package: github.com/spf13/cobra
21+
- package: github.com/vishvananda/netlink
22+
- package: golang.org/x/crypto
23+
subpackages:
24+
- ssh
25+
- ssh/agent
26+
- ssh/terminal
27+
- package: golang.org/x/net
28+
subpackages:
29+
- context
30+
- package: google.golang.org/api
31+
subpackages:
32+
- googleapi

scripts/glide-update.sh

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
#!/usr/bin/env bash
2+
#
3+
# Update vendored dedendencies.
4+
#
5+
set -e
6+
7+
if ! [[ "$0" =~ "scripts/glide-update.sh" ]]; then
8+
echo "must be run from repository root"
9+
exit 255
10+
fi
11+
12+
if [ -z "$(command -v glide)" ]; then
13+
echo "glide: command not found"
14+
exit 255
15+
fi
16+
17+
if [ -z "$(command -v glide-vc)" ]; then
18+
echo "glide-vc: command not found"
19+
exit 255
20+
fi
21+
22+
glide update --strip-vcs --strip-vendor --update-vendored --delete
23+
glide vc --only-code --no-tests

0 commit comments

Comments
 (0)