mirror of
https://github.com/traefik/traefik.git
synced 2025-09-28 09:11:24 +02:00
11 lines
408 B
Bash
Executable File
11 lines
408 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Fix for http://stackoverflow.com/questions/37284423/glog-flag-redefined-error
|
|
# go test github.com/containous/traefik/provider
|
|
#*/github.com/containous/traefik/provider/_test/provider.test flag redefined: log_dir
|
|
#panic: */github.com/containous/traefik/provider/_test/provider.test flag redefined: log_dir
|
|
rm -rf vendor/k8s.io/client-go/1.5/vendor/github.com/golang/glog/
|
|
|
|
go generate
|