From 38c8c89b6a3f6ceedab46a40ab110cc2f987f921 Mon Sep 17 00:00:00 2001 From: Cyrille Hemidy Date: Sun, 14 Oct 2018 00:38:18 +0200 Subject: [PATCH] fix mispell --- integration/gcs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/gcs.go b/integration/gcs.go index 2604f1397..a67b5fb00 100644 --- a/integration/gcs.go +++ b/integration/gcs.go @@ -36,7 +36,7 @@ func CreateIntegrationTarball() (string, error) { } tempDir, err := ioutil.TempDir("", "") if err != nil { - return "", fmt.Errorf("Failed to create temporary directoy to hold tarball: %s", err) + return "", fmt.Errorf("Failed to create temporary directory to hold tarball: %s", err) } contextFile := fmt.Sprintf("%s/context_%d.tar.gz", tempDir, time.Now().UnixNano()) cmd := exec.Command("tar", "-C", dir, "-zcvf", contextFile, ".")