mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-25 20:53:33 +00:00
Merge pull request #82720 from hwdef/add-err-handling-in-gce-gci
add err handling in gce/gci
This commit is contained in:
commit
95a3cd54cf
@ -150,7 +150,9 @@ func (c *ManifestTestCase) mustLoadPodFromManifest() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c *ManifestTestCase) tearDown() {
|
func (c *ManifestTestCase) tearDown() {
|
||||||
os.RemoveAll(c.kubeHome)
|
if err := os.RemoveAll(c.kubeHome); err != nil {
|
||||||
|
c.t.Fatalf("Failed to teardown: %s", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func copyFile(src, dst string) (err error) {
|
func copyFile(src, dst string) (err error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user