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:
parent
66e9205ab5
commit
54a574c104
@ -22,7 +22,7 @@ namespace builder
|
|||||||
|
|
||||||
info.WorkingDirectory = path;
|
info.WorkingDirectory = path;
|
||||||
info.FileName = cfg.SVNVersion;
|
info.FileName = cfg.SVNVersion;
|
||||||
info.Arguments = "--committed " + path;
|
info.Arguments = "--committed \"" + path + "\"";
|
||||||
info.UseShellExecute = false;
|
info.UseShellExecute = false;
|
||||||
info.RedirectStandardOutput = true;
|
info.RedirectStandardOutput = true;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user