1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 11:03:13 +02:00

Fix error when install directory in instal.js contains spaces, spotted by Rexona.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2042 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
cyberbotx
2009-02-13 17:47:08 +00:00
parent 1344bc5728
commit 4b291b12f8
+1 -1
View File
@@ -52,7 +52,7 @@ var installerQuestions = [
return true;
},
'cmake_argument' : function() {
return '-DINSTDIR:STRING=' + installerResponses['Install Directory'];
return '-DINSTDIR:STRING="' + installerResponses['Install Directory'] + '"';
}
},
{