fetcher: fix host key check. closes #1249

This commit is contained in:
Hylke Bons 2013-04-27 13:02:54 +01:00
parent cac827e5f0
commit 4b1e07cb19

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 + "\"");