fetcher: fix host key check. closes #1249

This commit is contained in:
Hylke Bons 2013-04-27 13:02:54 +01:00
parent bad1f93bd0
commit 329fe4885f

View file

@ -107,6 +107,9 @@ namespace SparkleLib.Git {
public override bool Fetch ()
{
if (!base.Fetch ())
return false;
if (FetchPriorHistory) {
this.git = new SparkleGit (SparkleConfig.DefaultConfig.TmpPath,
"clone --progress --no-checkout \"" + RemoteUrl + "\" \"" + TargetFolder + "\"");