Skip to content

Commit

Permalink
Merge pull request #134 from ConfettiFX/confetti-dev
Browse files Browse the repository at this point in the history
Fixed build script issue
  • Loading branch information
JenkinsConffx authored Aug 17, 2019
2 parents 051d65a + 54ff0af commit 67e9084
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion PyBuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def FindMSBuild17():
msbuildPath = ""
try:
#open vswhere and parse the output
proc = subprocess.Popen(["C:/Program Files (x86)/Microsoft Visual Studio/Installer/vswhere.exe","-latest","-requires" ,"Microsoft.Component.MSBuild"], stdout=subprocess.PIPE,stderr = subprocess.STDOUT,
proc = subprocess.Popen(["C:/Program Files (x86)/Microsoft Visual Studio/Installer/vswhere.exe","-version","14","-requires" ,"Microsoft.Component.MSBuild"], stdout=subprocess.PIPE,stderr = subprocess.STDOUT,
encoding='utf8')

ls_output = proc.communicate()[0]
Expand Down Expand Up @@ -1149,6 +1149,8 @@ def BuildWindowsProjects(xboxDefined, xboxOnly, skipDebug, skipRelease, printMSB
for proj in projects:
if skipAura == True and "Aura" in proj:
continue
if "Android" in proj:
continue
#we don't want to build Xbox one solutions when building PC
if "Xbox" not in proj and "XBOXOne" not in proj:
fileList.append(proj)
Expand Down

0 comments on commit 67e9084

Please sign in to comment.