Fixed annoying bug in builder where executing svnversion command on a path containing spaces would cause a crash

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40430
This commit is contained in:
Scott Ehlert 2007-02-02 11:08:51 +00:00
parent 66e9205ab5
commit 54a574c104

View File

@ -22,7 +22,7 @@ namespace builder
info.WorkingDirectory = path;
info.FileName = cfg.SVNVersion;
info.Arguments = "--committed " + path;
info.Arguments = "--committed \"" + path + "\"";
info.UseShellExecute = false;
info.RedirectStandardOutput = true;