diff --git a/SparkleLib/SparkleFetcher.cs b/SparkleLib/SparkleFetcher.cs index 951e5ae1..521a8a0a 100644 --- a/SparkleLib/SparkleFetcher.cs +++ b/SparkleLib/SparkleFetcher.cs @@ -63,7 +63,7 @@ namespace SparkleLib { process.StartInfo.RedirectStandardOutput = true; process.StartInfo.UseShellExecute = false; process.StartInfo.FileName = "git"; - process.StartInfo.Arguments = "clone " + RemoteOriginUrl + " " + TargetFolder; + process.StartInfo.Arguments = "clone --depth=1 " + RemoteOriginUrl + " " + TargetFolder; process.Exited += delegate {