fix mispell

This commit is contained in:
Cyrille Hemidy 2018-10-14 00:38:18 +02:00
parent 72e088fda5
commit 38c8c89b6a
1 changed files with 1 additions and 1 deletions

View File

@ -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, ".")