Skip to content
Snippets Groups Projects
Unverified Commit 57a195b3 authored by Angus Lees's avatar Angus Lees
Browse files

fix integration tests

The integration commit (#90) raced with another (#80) that changes the
`kubecfg` command line.  This commit adds the newly-required `-f` flag.
parent d6237bf8
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,7 @@ func runKubecfgWith(flags []string, input []runtime.Object) error {
args := []string{}
args = append(args, flags...)
args = append(args, "-f")
args = append(args, fname)
fmt.Fprintf(GinkgoWriter, "Running %q %q\n", *kubecfgBin, args)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment