fetcher git: set the working dir to the tmp path. Fixes #488

This commit is contained in:
Hylke Bons 2011-12-24 18:04:27 +01:00
parent 335ed6ddd6
commit f1605a566f

View file

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