From 444896104f7b59179a94e1cedc5b11a94af379e0 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 6 Sep 2008 14:02:48 +0000 Subject: [PATCH] Enclose bootstrapper command in quotes. --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%402503 --- tools/buildbot/bootstrap.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildbot/bootstrap.pl b/tools/buildbot/bootstrap.pl index 83761afa..89dbd9bc 100755 --- a/tools/buildbot/bootstrap.pl +++ b/tools/buildbot/bootstrap.pl @@ -17,7 +17,7 @@ if ($^O eq "linux") } else { - Build::Command($ENV{'MSVC7'} . ' /Rebuild Release builder.csproj'); + Build::Command('"' . $ENV{'MSVC7'} . '" /Rebuild Release builder.csproj'); Build::Command('move ' . Build::PathFormat('bin/Release/builder.exe') . ' .'); }