You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deps=$(GO15VENDOREXPERIMENT=1 go list -f '{{join .Deps "\n"}}'.| xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'| grep -v "github.com/github/git-lfs")
# exit 0 means non-vendored deps were found
if [ $?-eq 0 ];
then
echo"Non vendored dependencies found:"
fordin$deps;doecho"\t$d";done
echo
echo"These dependencies should be tracked in 'glide.yaml'."
echo"Consider running "glide update" or "glide get" to vendor a new dependency."