2017-02-13 22:01:54 +03:00
|
|
|
#!/usr/bin/env bash
|
2013-08-27 02:51:22 +04:00
|
|
|
|
2016-10-31 21:22:28 +03: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 16:35:06 +03:00
|
|
|
|
2016-10-31 21:22:28 +03:00
|
|
|
set -e
|
2013-12-19 21:01:55 +04:00
|
|
|
|
2016-10-31 21:22:28 +03: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 16:35:06 +03:00
|
|
|
exit 1
|
2016-10-31 21:22:28 +03:00
|
|
|
fi
|
2016-07-21 02:11:28 +03:00
|
|
|
|
2016-10-31 21:22:28 +03:00
|
|
|
vndr "$@"
|