fix: add missing assignment

This commit is contained in:
Pieter Vincken
2020-06-09 16:57:01 +02:00
parent e630334837
commit 28045399f3

View File

@@ -36,7 +36,7 @@ func ClonerUsingGitExec(repoSpec *RepoSpec) error {
"--depth=1",
repoSpec.CloneSpec(),
repoSpec.Dir.String())
out, err = cmd.CombinedOutput()
out, err := cmd.CombinedOutput()
if err != nil {
log.Printf("Error cloning git repo: %s", out)
return errors.Wrapf(