GP-916: PDB:win64PDBMake now works if path contains space

This commit is contained in:
Ryan Kurtz
2021-05-04 08:24:13 -04:00
parent 27fbe7278d
commit 88bf8abe2b

View File

@@ -62,7 +62,7 @@ if ("win64".equals(getCurrentPlatformName())) {
def projectPath = projectDir.toString()
def solutionBatchFilePath = projectPath + "/build/buildSolution.bat"
def projectPathWindows = projectPath.replace("/", File.separator)
def solutionPathWindows = "${projectPathWindows}\\src\\pdb\\pdb.sln"
def solutionPathWindows = "\"${projectPathWindows}\\src\\pdb\\pdb.sln\""
doFirst {
file("build/os/win64").mkdirs()