From a0667aa9b00ddf5c1337e6e4dd5a1013562e8100 Mon Sep 17 00:00:00 2001 From: Hylke Bons Date: Sat, 8 May 2010 17:55:45 +0100 Subject: [PATCH] fix some more paths --- SparkleShare/SparkleWindow.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparkleWindow.cs b/SparkleShare/SparkleWindow.cs index 0a849e77..da546242 100644 --- a/SparkleShare/SparkleWindow.cs +++ b/SparkleShare/SparkleWindow.cs @@ -516,8 +516,12 @@ namespace SparkleShare { Process.Start (); Process.Exited += delegate { - Directory.Move (SparklePaths.SparkleTmpPath + RepoName, - SparklePaths.SparklePath + "Sticky"); + Directory.Move ( + SparkleHelpers.CombineMore (SparklePaths.SparkleTmpPath, + RepoName), + SparkleHelpers.CombineMore (SparklePaths.SparklePath, + RepoName) + ); AddDialog.Destroy (); };