Skip to content

Commit

Permalink
Merge pull request #1230 from Postremus/#1227
Browse files Browse the repository at this point in the history
CKAN Updater is no longer confused about spaces.
  • Loading branch information
mgsdk committed Jul 8, 2015
2 parents 99be399 + 8b882ce commit 0f2af1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AutoUpdate/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ static void Main(string[] args)
//Start CKAN
if (IsOnMono())
{
Process.Start("mono", local_path);
Process.Start("mono", String.Format("\"{0}\"", local_path));
}
else
{
Expand Down

0 comments on commit 0f2af1c

Please sign in to comment.