From 54a574c104856e051d96ae263a6d103591ab74c7 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Fri, 2 Feb 2007 11:08:51 +0000 Subject: [PATCH] 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 --- tools/builder/ABuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/builder/ABuilder.cs b/tools/builder/ABuilder.cs index 4259da00..f1a95b19 100644 --- a/tools/builder/ABuilder.cs +++ b/tools/builder/ABuilder.cs @@ -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;