2017-02-13 14:01:54 -05:00
|
|
|
#!/usr/bin/env bash
|
2013-08-26 18:51:22 -04:00
|
|
|
|
2016-10-31 14:22:28 -04:00
|
|
|
# This file is just wrapper around vndr (github.com/LK4D4/vndr) tool.
|
|
|
|
# For updating dependencies you should change `vendor.conf` file in root of the
|
|
|
|
# project. Please refer to https://github.com/LK4D4/vndr/blob/master/README.md for
|
|
|
|
# vndr usage.
|
2016-04-19 09:35:06 -04:00
|
|
|
|
2016-10-31 14:22:28 -04:00
|
|
|
set -e
|
2013-12-19 12:01:55 -05:00
|
|
|
|
2016-10-31 14:22:28 -04:00
|
|
|
if ! hash vndr; then
|
|
|
|
echo "Please install vndr with \"go get github.com/LK4D4/vndr\" and put it in your \$GOPATH"
|
2016-04-19 09:35:06 -04:00
|
|
|
exit 1
|
2016-10-31 14:22:28 -04:00
|
|
|
fi
|
2016-07-20 19:11:28 -04:00
|
|
|
|
2020-07-15 07:45:41 -04:00
|
|
|
if [ $# -eq 0 ] || [ "$1" = "archive/tar" ]; then
|
|
|
|
echo "update vendored copy of archive/tar"
|
|
|
|
: "${GO_VERSION:=$(awk -F '[ =]' '$1 == "ARG" && $2 == "GO_VERSION" { print $3; exit }' ./Dockerfile)}"
|
|
|
|
rm -rf vendor/archive
|
|
|
|
mkdir -p ./vendor/archive/tar
|
2021-08-23 10:41:32 -04:00
|
|
|
echo "downloading: https://golang.org/dl/go${GO_VERSION%.0}.src.tar.gz"
|
|
|
|
curl -fsSL "https://golang.org/dl/go${GO_VERSION%.0}.src.tar.gz" \
|
2020-07-15 07:45:41 -04:00
|
|
|
| tar --extract --gzip --directory=vendor/archive/tar --strip-components=4 go/src/archive/tar
|
|
|
|
patch --strip=4 --directory=vendor/archive/tar --input="$PWD/patches/0001-archive-tar-do-not-populate-user-group-names.patch"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ $# -eq 0 ] || [ "$1" != "archive/tar" ]; then
|
|
|
|
vndr -whitelist=^archive/tar "$@"
|
|
|
|
fi
|