From f1605a566fb70f0507331bcb684b162eec48374e Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 24 Dec 2011 18:04:27 +0100 Subject: [PATCH] fetcher git: set the working dir to the tmp path. Fixes #488 --- SparkleLib/Git/SparkleFetcherGit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SparkleLib/Git/SparkleFetcherGit.cs b/SparkleLib/Git/SparkleFetcherGit.cs index 08a3b02d..7ccd0c41 100755 --- a/SparkleLib/Git/SparkleFetcherGit.cs +++ b/SparkleLib/Git/SparkleFetcherGit.cs @@ -83,7 +83,7 @@ namespace SparkleLib { public override bool Fetch () { - this.git = new SparkleGit (base.target_folder, + this.git = new SparkleGit (SparkleConfig.DefaultConfig.TmpPath, "clone " + "--progress " + // Redirects progress stats to standarderror "\"" + base.remote_url + "\" " + "\"" + base.target_folder + "\"");