aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorZousar Shaker <[email protected]>2022-01-04 15:37:35 -0700
committerZousar Shaker <[email protected]>2022-01-04 15:37:35 -0700
commit3db65e49831ec235b658a0faded93e40bcc54836 (patch)
tree56c83e936f47898cc0fd4a8560def9755d7b08a5 /scripts
parentAllow for "Values" member of structured cache records that is equivalent to "... (diff)
downloadzen-3db65e49831ec235b658a0faded93e40bcc54836.tar.xz
zen-3db65e49831ec235b658a0faded93e40bcc54836.zip
Fix issues with deployment python script due to removal of sln files.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/deploybuild.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/deploybuild.py b/scripts/deploybuild.py
index d137c3da1..4327d14f7 100644
--- a/scripts/deploybuild.py
+++ b/scripts/deploybuild.py
@@ -46,7 +46,7 @@ if not os.path.isfile(os.path.join(engineroot, "RunUAT.bat")):
zenroot = __file__
-while not os.path.exists(os.path.join(zenroot, "zen.sln")):
+while not os.path.exists(os.path.join(zenroot, "deploy_build.bat")):
zenroot = os.path.dirname(zenroot)
jazz_print("Zen root:", zenroot)
@@ -61,7 +61,7 @@ try:
vs_path = vswhere.get_latest_path() # can also specify prerelease=True
jazz_print("BUILDING CODE", f"using VS root: {vs_path}")
devenv_path = os.path.join(vs_path, "Common7\\IDE\\devenv.com")
- build_cmd = [devenv_path, "/build", "Release", "zen.sln"]
+ build_cmd = [devenv_path, "/build", "Release", "vsxmake2019\\zen.sln"]
build_output_dir = r'x64\Release'
subprocess.run(build_cmd, check=True)